前言
新年新气象,我们又一度迎来新一年的模拟赛(谁想迎来)
总之,有来到了熟悉的地方——纪中。
成绩
RankRankRank是有算别人的
RankRankRank | PersonPersonPerson | ScoreScoreScore | AAA | BBB | CCC | DDD |
---|---|---|---|---|---|---|
222 | 2017myself2017myself2017myself | 300300300 | 100100100 | 100100100 | 100100100 | 000 |
444 | 2017zyc2017zyc2017zyc | 270270270 | 100100100 | 100100100 | 707070 | 000 |
555 | 2017xxy2017xxy2017xxy | 260260260 | 100100100 | 100100100 | 555555 | 555 |
666 | 2017xjq2017xjq2017xjq | 240240240 | 100100100 | 100100100 | 404040 | 000 |
888 | 2017lrz2017lrz2017lrz | 205205205 | 100100100 | 100100100 | 555 | 000 |
101010 | 2017hzb2017hzb2017hzb | 200200200 | 100100100 | 100100100 | 000 | 000 |
191919 | 2017hjq2017hjq2017hjq | 160160160 | 100100100 | 606060 | 000 | 000 |
313131 | 2017lw2017lw2017lw | 100100100 | 100100100 | 000 | 000 | 000 |
正题
T1:P1313,jzoj3027−T1:P1313,jzoj3027-T1:P1313,jzoj3027−计算系数【组合数,二项式定理】
之前做过,就直接放了
博客链接:
https://blog.csdn.net/Mr_wuyongcong/article/details/82502479
T2:P1311,jzoj3025−T2:P1311,jzoj3025-T2:P1311,jzoj3025−选择客栈【统计】
博客链接:
https://blog.csdn.net/Mr_wuyongcong/article/details/86540567
T3:P1314,jzoj3028−T3:P1314,jzoj3028-T3:P1314,jzoj3028−聪明的质监员【二分答案,,,前缀和】
博客链接:
https://blog.csdn.net/Mr_wuyongcong/article/details/86540688
T4:P1315,jzoj3029−T4:P1315,jzoj3029-T4:P1315,jzoj3029−观光公交【费用流】
博客链接:
https://blog.csdn.net/Mr_wuyongcong/article/details/86541082
someofcodesome\ of\ codesome of code
T2 随机数据
#include<cstdio>
#include<cstdlib>
#include<ctime>
#define random(x) rand()%x
using namespace std;
int main()
{srand(time(0));//freopen("data.in","w",stdout);printf("10 3 %d\n",random(10));for(int i=1;i<=10;i++)printf("%d %d\n",random(3),random(10));
}
T2 60分暴力
#include<cstdio>
#include<cctype>
#define ll long long
using namespace std;
int read() {int x=0,f=1; char c=getchar();while(!isdigit(c)) {if(c=='-')f=-f;c=getchar();}while(isdigit(c)) x=(x<<1)+(x<<3)+c-48,c=getchar();return x*f;
}
void print(int x){if (x>9) print(x/10); putchar(x%10+48); return;
}
ll n,k,p,color[5000],cost[5000],ans;
int main()
{freopen("data.in","r",stdin);freopen("data.ans","w",stdout);n=read();k=read();p=read();for(ll i=1;i<=n;i++){color[i]=read();cost[i]=read();}for(int i=1;i<=n;i++)for(int j=i+1;j<=n;j++){if(color[i]==color[j]){for(int k=i;k<=j;k++)if(cost[k]<=p){ans++;break;}}}print(ans);
}
T2 对拍
#include<windows.h>
#include<cstdio>
using namespace std;
int main()
{while(1){system("data.exe");system("BL.exe");system("T2.exe");if(!system("fc data.ans data.out"))printf("AC\n");else{printf("WA\n");break;}}
}
尾声
猩新年快乐