模拟
nenu_xlp
钢之心
展开
-
HDU 4950 Monster
分情况讨论#includeusing namespace std;int main(){ long long h,a,b,k; int kase=1; while(scanf("%I64d%I64d%I64d%I64d",&h,&a,&b,&k)==4) { if(h==0&&a==0&&b==0&&k==0) br原创 2014-08-15 10:18:07 · 660 阅读 · 0 评论 -
HDU 4858 项目管理
BestCoder Round #1数据不大原创 2014-07-27 09:21:02 · 769 阅读 · 0 评论 -
Codeforces 279B Books
#includeusing namespace std;int a[100020];int main(){ int n,t; scanf("%d%d",&n,&t); int sum=0,k=1,Max=0; for(int i=1;i<=n;i++) { scanf("%d",&a[i]); sum+=a[i];原创 2014-07-26 19:40:07 · 1039 阅读 · 0 评论 -
Codeforces 218B Airport
max_element()取数组最大元素min_element()取数组最小元素原创 2014-07-27 11:34:14 · 677 阅读 · 0 评论 -
Codeforces 363A Soroban
算盘的模拟#includeusing namespace std;int main(){ char s[20]; scanf("%s",&s); int len=strlen(s); for(int i=len-1;i>=0;i--) { if(s[i]>='5'&&s[i]<='9') {原创 2014-07-27 10:24:12 · 859 阅读 · 0 评论 -
HNU 12834 Thread Tree
递归输出就行了#includeusing namespace std;struct tree{ int dot; string s;}t[1020];int si[1020],a[1020][1020];void print(int x){ for(int i=0;i<=si[x]-1;i++) { for(int j=1;j<=t[原创 2014-07-26 18:36:33 · 800 阅读 · 0 评论 -
BNU 29373 Key Logger
链表用迭代器模拟光标的位置原创 2014-05-15 18:48:44 · 589 阅读 · 0 评论 -
Codeforces 451A Game With Sticks
结果与所有人的策略无关原创 2014-07-25 09:42:23 · 550 阅读 · 0 评论 -
Codeforces 451B Sort the Array
找出递减序列 如果递减序列只有一个bingqie原创 2014-07-25 09:42:58 · 800 阅读 · 0 评论 -
Codeforces 451C Predict Outcome of the Game
枚举所有可能的情况#includeusing namespace std;typedef long long LL;int solve(LL n,LL k,LL d1,LL d2){ if(n%3!=0) return 0; for(int i=-1;i<=1;i++) { for(int j=-1;j<=1;j++)原创 2014-07-25 09:44:09 · 560 阅读 · 0 评论 -
NBUT 1570 小明:你还认识我吗?
分情况讨论#includeusing namespace std;int main(){ int T; long long N; scanf("%d",&T); for(int kase=1;kase<=T;kase++) { scanf("%lld",&N); if(N<=2) printf原创 2014-07-09 18:35:13 · 552 阅读 · 0 评论 -
NBUT 1571 呦呦切克闹
#includeusing namespace std;int main(){ string s; while(cin>>s) { int flag1=0; for(int i=1;i<=s.length()/2;i++) { int flag2=0; if(s.lengt原创 2014-07-10 09:02:23 · 1655 阅读 · 0 评论 -
HNU 12845 Ballot Analyzing Device
#includeusing namespace std;struct vote{ int x; string s;}v[20];bool cmp(vote a,vote b){ return a.x>b.x;}int main(){ int n,m; string str; scanf("%d%d",&n,&m); for(i原创 2014-07-29 10:15:24 · 745 阅读 · 0 评论 -
TopCoder SRM629 RectangleCoveringEasy
只要完全覆盖且不完全相同即可#include using namespace std;struct RectangleCoveringEasy { int solve(int holeH, int holeW, int boardH, int boardW) { if((boardH>=holeH&&boardW>holeW)||(boardH>holeH&&boa原创 2014-08-13 09:51:08 · 769 阅读 · 0 评论 -
TopCoder SRM629 CandyMaking
将所有密度遍历一遍求最小即可#include using namespace std;struct CandyMaking { double findSuitableDensity(vector containerVolume, vector desiredWeight) { vectorv; double Min=50000000;原创 2014-08-13 10:00:31 · 900 阅读 · 0 评论 -
NBUT 1583 小朋友们,还记得我是谁吗?对了,我就是光头郑昱
#includeusing namespace std;int main(){ int N,P,M; while(scanf("%d",&N)==1) { int sum=0,Min=0; for(int i=1;i<=N;i++) { scanf("%d%d",&P,&M);原创 2014-07-25 10:00:31 · 672 阅读 · 0 评论 -
HDU 4931 Happy Three Friends
为了让Grandpa Shawn赢 Dong-Hao肯定让他拿zu原创 2014-08-11 10:40:18 · 1112 阅读 · 0 评论 -
Codeforces 447A DZY Loves Hash
建立一个数组来存储插入的数 判断冲突的发生jike原创 2014-07-14 09:11:02 · 595 阅读 · 0 评论 -
Codeforces 447B DZY Loves Strings
加入的K个字符x使w[x]最大即可 genj原创 2014-07-14 09:12:10 · 715 阅读 · 0 评论 -
HDU 4883 TIANKENG’s restaurant
建立数组遍历求最大值即可#includeusing namespace std;int t[2020];int main(){ int T,n,a; char s1[10],s2[10]; scanf("%d",&T); for(int kase=1;kase<=T;kase++) { memset(t,0,sizeof(t));原创 2014-08-05 09:07:11 · 851 阅读 · 0 评论 -
HNU 12844 Arrangement of Contest
#includeusing namespace std;int a[50];int main(){ char s[50]; int n; while(scanf("%d",&n)==1) { memset(a,0,sizeof(a)); getchar(); for(int i=1;i<=n;i++)原创 2014-07-29 10:11:21 · 734 阅读 · 0 评论 -
Codeforces 452A Eevee
#includeusing namespace std;string m[]={"vaporeon","jolteon","flareon","espeon","umbreon","leafeon","glaceon","sylveon"};int len[]={8,7,7,6,7,7,7,7};int main(){ int n,ans; char s[20];原创 2014-07-29 10:01:43 · 809 阅读 · 0 评论 -
Codeforces 445A DZY Loves Chessboard
好的棋盘交替放置黑白棋子 坏的棋盘输出“-”jik原创 2014-07-07 13:18:51 · 585 阅读 · 0 评论 -
Codeforces 448B Suffix Structures
如果t是s的子串 输出"automaton"如果原创 2014-07-18 10:51:35 · 482 阅读 · 0 评论 -
Codeforces 448A Rewards
#includeusing namespace std;int main(){ int n,a1,a2,a3,b1,b2,b3,a,b; scanf("%d%d%d%d%d%d%d",&a1,&a2,&a3,&b1,&b2,&b3,&n); a=(a1+a2+a3+4)/5,b=(b1+b2+b3+9)/10; if(n>=a+b) print原创 2014-07-18 10:43:32 · 535 阅读 · 0 评论 -
Codeforces 432A Choosing Teams
简单模拟#includeusing namespace std;int main(){ int n,k,y; int ans=0; scanf("%d%d",&n,&k); for(int i=1;i<=n;i++) { scanf("%d",&y); if(5-y>=k) ans++;原创 2014-05-16 09:03:44 · 659 阅读 · 0 评论 -
HDU 4716 A Computer Graphics Problem
2013年成都邀请赛A题简单模拟题原创 2014-05-07 14:20:27 · 443 阅读 · 0 评论 -
HDU 4727 The Number Off of FFF
2013年成都邀请赛L题遍历数组 如果有原创 2014-05-07 14:35:53 · 531 阅读 · 0 评论 -
NBUT 1557 Team of Slime
从大到小找到第一个错位的史莱姆(ji原创 2014-05-04 20:14:51 · 555 阅读 · 0 评论 -
NBUT 1552 Minecraft Server Bug
简单模拟注意字符的读入原创 2014-05-04 20:06:44 · 547 阅读 · 0 评论 -
NBUT 1555 The Sum of F(x) and G(x)
简单模拟注意p的取值范围(原创 2014-05-04 20:09:36 · 611 阅读 · 0 评论 -
NBUT 1561 Set Time
简单时间模拟题注意闰年的判断#includeusing namespace std;int year[1020],month[1020];int a1[]={31,28,31,30,31,30,31,31,30,31,30,31};int a2[]={31,29,31,30,31,30,31,31,30,31,30,31};int IsLeapYear(int x){原创 2014-05-04 19:55:38 · 498 阅读 · 0 评论 -
HDU 4593 Robot
2013年南京邀请赛H题原创 2014-05-03 19:52:12 · 525 阅读 · 0 评论 -
Codeforces 427A Police Recruits
简单模拟题原创 2014-05-03 13:10:32 · 842 阅读 · 0 评论 -
BNU 29375 Two Strings
字符串排序后逐个计算原创 2014-05-15 18:55:25 · 510 阅读 · 0 评论 -
Codeforces 432B Football Kit
模拟#includeusing namespace std;int x[100020],y[100020],home[100020],away[100020],sum[100020];int main(){ int n; scanf("%d",&n); for(int i=1;i<=n;i++) { scanf("%d%d",&x[i],原创 2014-05-16 09:08:12 · 668 阅读 · 0 评论 -
Codeforces 430A Points and Segments (easy)
任何情况下都有解 不可能输出-1将所有点排序后交替用ho原创 2014-05-12 12:41:57 · 833 阅读 · 0 评论 -
NBUT 1585 字符串大处理
CapsLock和Shift实际上是一样的原创 2014-07-21 13:50:02 · 555 阅读 · 0 评论 -
NBUT 1576 炒鸡想减肥的字符串
NBUT1052的加强版还是原来的方法做原创 2014-07-21 13:36:40 · 836 阅读 · 3 评论 -
Codeforces 450A Jzzhu and Children
求出每个孩子可以原创 2014-07-21 14:13:21 · 544 阅读 · 0 评论