码迷,mamicode.com
首页 >  
搜索关键字:水题    ( 4171个结果
poj-3481-Double Queue-splay树的水题
很水的splay树。 会简单的操作即可。。。 #include #include #include #include #include using namespace std; #define maxn 1100000 #define mem(a,b) memset(a,b,sizeof(a)) #define root10 ch[ch[root][1]][0] #define root1 c...
分类:其他好文   时间:2014-06-19 11:56:59    阅读次数:328
Codeforces Round #195 (Div. 2) A. Vasily the Bear and Triangle
水题,注意数据范围即可#include #include #include using namespace std;typedef pair Point;int main(){ int x,y; cin >> x >>y; Point a,b; if((x>0 && y > ...
分类:其他好文   时间:2014-06-16 10:47:47    阅读次数:226
ytu 1061: 从三个数中找出最大的数(水题,模板函数练习 + 宏定义练习)
1061: 从三个数中找出最大的数Time Limit:1 SecMemory Limit:128 MBSubmit:154Solved:124[Submit][Status][Web Board]Description定义一个带参的宏(或者模板函数),从三个数中找出最大的数。Input3个短整型数...
分类:其他好文   时间:2014-06-10 20:52:33    阅读次数:214
ytu 1064: 输入三个字符串,按由小到大的顺序输出(水题,字符串处理)
1064: 输入三个字符串,按由小到大的顺序输出Time Limit:1 SecMemory Limit:128 MBSubmit:471Solved:188[Submit][Status][Web Board]Description输入三个字符串,按由小到大的顺序输出。分别使用指针和引用方式实现两...
分类:其他好文   时间:2014-06-10 20:45:15    阅读次数:250
ytu 1059: 判别该年份是否闰年(水题,宏定义)
1059: 判别该年份是否闰年Time Limit:1 SecMemory Limit:128 MBSubmit:222Solved:139[Submit][Status][Web Board]Description给年份year,定义一个宏,以判别该年份是否闰年。提示:宏名可以定义为LEAP_YE...
分类:其他好文   时间:2014-06-10 20:34:26    阅读次数:288
Codeforces Round #249 (Div. 2) A - Queue on Bus Stop
水题#include #include #include using namespace std;int main(){ int n,m; cin >> n >> m; int cnt = 0, sum = 0; for(int i = 0 ; i > a; i...
分类:其他好文   时间:2014-06-10 16:38:18    阅读次数:226
Codeforces Testing Round #10 A. Forgotten Episode
水题,注意数据范围#include using namespace std;int main(){ long long n,a; cin >> n; long long sum =(n*(n+1))>>1; for(int i = 0 ; i >a; sum ...
分类:其他好文   时间:2014-06-10 12:47:58    阅读次数:233
Codeforces Testing Round #10 B. Balancer
水题,只要遍历一遍,不够平均数的,从后面的借,比平均数多的,把多余的数添加到后面即可,注意数据范围#include #include #include using namespace std;int main(){ int n; cin >> n; vector a(n); ...
分类:其他好文   时间:2014-06-10 12:42:12    阅读次数:176
nyoj 628 小媛在努力 【搜索】
水师——————...
分类:其他好文   时间:2014-06-10 10:45:33    阅读次数:143
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!