码迷,mamicode.com
首页 >  
搜索关键字:九度oj    ( 437个结果
oj--九度oj---1435
贪心,每次选择浓度最低的。 注意浮点数比较的问题。 AC如下: 上面这行代码会导致WA,因为相当于< 改成这样,AC. 因为相当于<= ...
分类:其他好文   时间:2017-06-25 18:33:10    阅读次数:152
oj---九度oj---1433
#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
oj---九度oj---1434
#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
oj---九度oj---1173
二分查找 ...
分类:其他好文   时间:2017-06-25 16:55:23    阅读次数:147
oj---九度oj---1126
#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
oj---九度oj---1432
先排版,再输出。 先定位中心坐标,然后定位左上角坐标,然后开始排版,四边同步。左上角起始为(1,1) . ...
分类:其他好文   时间:2017-06-24 21:48:34    阅读次数:158
oj---九度oj---1052
#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
oj---九度oj---1065
#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
oj--九度oj---1431
#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
oj--九度oj--1018
简单hash ...
分类:其他好文   时间:2017-06-24 19:49:49    阅读次数:135
437条   上一页 1 2 3 4 5 ... 44 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!