码迷,mamicode.com
首页 >  
搜索关键字:round    ( 15566个结果
*Codeforces Round #251 (Div. 2)AK)
A、确定性数学计算,水,读题要快 1 #include 2 #include 3 4 using namespace std; 5 int N,d; 6 int main(){ 7 while(~scanf("%d%d",&N,&d)){ 8 int cnt=0; 9 ...
分类:其他好文   时间:2014-06-29 13:39:46    阅读次数:215
These Bags Are Very Much Well Made
Therefore, it is seriously a great tool around when your dad is in a round of golf. Your dad will appreciate the golf tool and be glad to get it in pl...
分类:其他好文   时间:2014-06-11 23:03:13    阅读次数:276
Codeforces Round #251 (Div. 2) B. Devu, the Dumb Guy
注意数据范围即可#include #include #include using namespace std;int main(){ long long n,x; cin >> n >> x; vector c(n); for(int i = 0 ; i > c[i]; ...
分类:其他好文   时间:2014-06-09 21:17:11    阅读次数:269
smartJS 0.1 API 讲解 - Trigger
Trigger在目标对象上加入触发器功能,目标对象的方法就会具有方法注入功能,注入的方式有before(前置执行),after(后置执行)和round(环绕),另外还有一个exception模式,因为异常处理的模块还没完成,暂时先空缺。接口方法 st.attachTrigger(target,...
分类:Windows程序   时间:2014-06-09 20:41:24    阅读次数:353
Codeforces Round #251 (Div. 2) A - Devu, the Singer and Churu, the Joker
水题#include #include #include using namespace std;int main(){ int n,d,t; cin >> n >> d; for(int i = 0 ; i > t; d-=t; } d-=(n-1)*1...
分类:其他好文   时间:2014-06-09 13:05:02    阅读次数:198
Codeforces Round #251 (Div. 2) C、D
Codeforces Round #251 (Div. 2) C题: 题意:给定一些数字,要把这些数字方程k行,其中p行和为奇数,剩下和为偶数。 思路:根据奇数偶数的性质,先把p行放1个奇数,然后看看剩下的奇数是不是偶数个,如果不是肯定不满足,然后判断一下剩下的奇数个数/2加上偶数个数是否多余p个,如果不是肯定不满足,然后把这些放入p行,还有剩下的数字就全丢到最后一行去。 D题: 题...
分类:其他好文   时间:2014-06-08 17:01:05    阅读次数:223
codeforces Round #250 (div2)
a题,就不说了吧b题,直接从大到小排序1-limit的所有数的lowbit,再从大到小贪心组成sum就行了 1 #include 2 #include 3 #include 4 #include 5 #define N 200000 6 using namespace std; ...
分类:其他好文   时间:2014-06-07 21:49:57    阅读次数:272
Codeforces Round #250 (Div. 2)——The Child and Set
给定goal和limit,求1-limit中的若干个数,每个数最多出现一次,且这些数的lowbit()值之和等于goal,如果存在这样的一些数,输出个数和每个数;否则-1...
分类:其他好文   时间:2014-06-07 14:43:31    阅读次数:208
Mysql 取整的方法
1、CEIL() 向上取整 SELECT CEIL(1/2); 12、FLOOR() 向下取整 SELECT FLOOR(0.6); 03、ROUND() 四舍五入 SELECT ROUND(1.5); 2
分类:数据库   时间:2014-06-06 18:12:29    阅读次数:435
codeforces --- Round #250 (Div. 2) B. The Child and Set
【题目大意】给你一个sum和一个limit,现在要你在1~limit中找到一些数来使得这些数的和等于sum,如果能找到的话就输出找到的数的个数和这些数,未找到输出"-1"。比赛的时候被hack了。【题目分析】这题需要将所有的数的lowbit先求出来,然后按照大小排序,然后从后往前判断,如果这个数小于...
分类:其他好文   时间:2014-06-05 20:36:44    阅读次数:307
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!