比赛
RedPolya
这个作者很懒,什么都没留下…
展开
-
hdu 5984
PockyProblem Description Let’s talking about something of eating a pocky. Here is a Decorer Pocky, with colorful decorative stripes in the coating, of length L. While the length of remaining pocky is原创 2016-11-30 18:44:21 · 1433 阅读 · 0 评论 -
2017年第0届浙江工业大学之江学院程序设计竞赛决赛
Aqwb同时也是是之江学院的志愿者,暑期要前往周边地区支教,为了提高小学生的数学水平。她把小学生排成一排,从左至右从1开始依次往上报数。 玩完一轮后,他发现这个游戏太简单了。于是他选了3个不同的数x,y,z;从1依次往上开始报数,遇到x的倍数、y的倍数或z的倍数就跳过。如果x=2,y=3,z=5; 第一名小学生报1,第2名得跳过2、3、4、5、6,报7;第3名得跳过8、9、10,报11。 那么原创 2017-06-13 14:10:46 · 1597 阅读 · 0 评论 -
2017中国大学生程序设计竞赛 - 女装专场
Automatic Judge算罚时。#include <cstdio>#include <cstring>#include <iostream>#include <string>using namespace std;bool v[2000];int ts[2000];int main(){ int T,n,m,mins,secs,num; string st; c原创 2017-05-08 21:23:11 · 604 阅读 · 0 评论 -
第十五届北京师范大学程序设计竞赛决赛(网络同步赛)
A. Another Server何老师某天在机房里搞事情的时候,发现机房里有n台服务器,从1到n标号,同时有2n-2条网线,从1到2n-2标号,其中第i条网线双向连接着\lfloor \frac{i+1}{2} \rfloor号服务器和\lfloor \frac{i+1}{2} \rfloor+1号服务器,在一个单位时间内最多能够承受x_i个单位流量。显然这些服务器之间要进行信息交换,为了测试服务原创 2017-04-25 21:38:34 · 1077 阅读 · 0 评论 -
华中农业大学第五届程序设计大赛网络同步赛
Problem A: Little Red Riding HoodDescription Once upon a time, there was a little girl. Her name was Little Red Riding Hood. One day, her grandma was ill. Little Red Riding Hood went to visit her. On原创 2017-04-24 17:53:41 · 895 阅读 · 0 评论 -
hdu(2016’12)- 网络同步赛
1001真正的粉丝,不看题目都能A。#include <cstdio>#include <cstring>#include <iostream>using namespace std;int main(){ int T;char st[1111]; scanf("%d",&T); getchar(); while(T--){ gets(st);原创 2016-12-24 23:17:11 · 7769 阅读 · 1 评论 -
NJFU比赛部分题解
先放上几题的不同解法。BIgnatius and the Princess IVTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32767 K (Java/Others) Total Submission(s): 28417 Accepted Submission(s): 12033Problem Descripti原创 2016-11-28 17:13:29 · 583 阅读 · 0 评论 -
zstu新生赛
4238: Save the Princess博弈题,直接判断n奇偶以及k的位置是否是边界。#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main(){ int T,n,k; cin>>T; while(T--){ cin>>n>>k;原创 2016-11-28 16:50:12 · 673 阅读 · 0 评论 -
Codeforces Round 383
A Arpa’s hard exam and Mehrdad’s naive cheat求1378n1378^n个位是几。找规律。。。。#include <cstdio>#include <cstring>const int d[]={6,8,4,2}; int main(){ int n; while(~scanf("%d",&n)){ if(n==0)pri原创 2016-12-07 13:34:15 · 668 阅读 · 0 评论 -
Contest1051 - 2016广工大新生杯决赛
A pigofzhou的巧克力棒二进制拆分。 2^k对应开心值为2^k - 1。 代码写烦了。#include <cstdio>#include <cstring>#include <iostream>#include <map>#define LL long long using namespace std;map<int,int> mp;void print(){ mp.原创 2016-12-04 19:32:02 · 904 阅读 · 2 评论 -
Contest1086 - 哈尔滨理工大学软件学院ACM程序设计全国邀请赛
E 666求6的子串的个数,误导了一发小学弟,让他求成子序列了。ans=∑i=1k(Pi+1)∗Pi/2,Pi为某一段连续的6的个数。ans=\sum_{i=1}^{k}(P_i+1)*P_i/2,P_i为某一段连续的6的个数。#include <cstdio>#include <cstring>#include <iostream>#include <algorithm>#define L原创 2016-12-03 23:22:11 · 768 阅读 · 0 评论 -
"科林明伦杯"哈尔滨理工大学第六届程序设计团队赛
A CoinKim 有一枚硬币。为了验证这枚硬币是不是均匀的,Kim开始重复抛这枚硬币。 现在给出Kim抛硬币的结果,请你告诉Kim抛出正面的次数占总次数的比例。签到题。。。#include #include #include using namespace std;int main(){ int T,n,x,tot; cin>>T; while(T--){ s原创 2016-12-10 22:30:02 · 899 阅读 · 0 评论 -
“盛大游戏杯”第15届上海大学程序设计联赛夏季赛暨上海高校金马五校赛
参加的咸场赛,前面代码队友的。A 黑白图像直方图题目要求:输出矩阵中每一列1的个数#include<bits/stdc++.h>#define maxn 105using namespace std;int a[maxn][maxn];int main(){ cin.tie(0),cout.tie(0); int n,m; while(cin>>n>>m){原创 2017-07-15 14:02:21 · 1034 阅读 · 2 评论