贪心,每次选择浓度最低的。 注意浮点数比较的问题。 AC如下: 上面这行代码会导致WA,因为相当于< 改成这样,AC. 因为相当于<= ...
分类:
其他好文 时间:
2017-06-25 18:33:10
阅读次数:
152
#include #include using namespace std; const double eps=1e-8; bool greater(double x){ if(x>eps) return 1; else return 0; } struct Goods{ double price;... ...
分类:
其他好文 时间:
2017-06-25 17:45:07
阅读次数:
183
#include #include using namespace std; struct Program{ int s; int e; bool operator < (const Program &A) const{ return e<A.e; } }program[105]; int main... ...
分类:
其他好文 时间:
2017-06-25 17:41:49
阅读次数:
97
#include int buf[105]; int main(){ int n; int num; bool isfirst; scanf("%d",&n); while(n--){ scanf("%d",&num); isfirst=1; for(int i=0;ibuf[1]||buf[0]b... ...
分类:
其他好文 时间:
2017-06-25 16:11:39
阅读次数:
95
先排版,再输出。 先定位中心坐标,然后定位左上角坐标,然后开始排版,四边同步。左上角起始为(1,1) . ...
分类:
其他好文 时间:
2017-06-24 21:48:34
阅读次数:
158
#include #include int buf[205]; int main(){ int n; int x; while(scanf("%d",&n)!=EOF){ for(int i=0;i<n;i++){ scanf("%d",&buf[i]); } scanf("%d",&x)... ...
分类:
其他好文 时间:
2017-06-24 21:47:54
阅读次数:
162
#include int main(){ int h; scanf("%d",&h); int blanks; int num; for(int i=0;i<h;i++){ num=h+i*2; blanks=(3*h-2)-2*i-h; while(blanks--) printf(" "); .... ...
分类:
其他好文 时间:
2017-06-24 21:05:12
阅读次数:
148
#include #include #define offset 500000 bool isinput[1000001]; int main(){ int n,m; while(scanf("%d %d",&n,&m)!=EOF){ memset(isinput,0,sizeof(isinput)... ...
分类:
其他好文 时间:
2017-06-24 20:49:38
阅读次数:
136