快半个月没有把自己的代码什么更新上来了,这两周既是期中考试又是数据结构专题training,然后今晚专题结束才能把早就放在草稿箱的那些放出来☺
今天下午一次队内赛,做的中东的区域赛的。感觉自己太智障了,第一题还CE了一次time标识符在BC上都好用的,但OJ说不行,以后用_time或者什么好了,
然后输出格式没有注意就交了一发,……
Source
2016 UESTC ACM Summer Training Team Selection (1)
ACM-ICPC 2015 Mid-Central Regional Problem A: ACM Contest Scoring
My Solution
水题,模拟ACM赛制算总罚时
#include <iostream>
#include <cstdio>
#include <cstring>
#include <map>
using namespace std;
int _time[26];
char rorw[6];
map<int, int> _right;
int main()
{
#ifdef LOCAL
freopen("a.txt", "r", stdin);
#endif // LOCAL
int m, pr, ans = 0, num = 0;
char problem;
memset(_time, 0, sizeof _time);
while(scanf("%d", &m)){
if(m == -1) break;
getchar();
scanf("%c", &problem);
scanf("%s", rorw);
pr = problem-'A';
if(rorw[0] == 'w'){
if(_right[pr] == 0){
_time[pr] += 20;
}
}
else{
if(_right[pr] == 0){
_time[pr] += m;
_right[pr]++;
}
}
}
for(int i = 0; i < 26; i++){
if(_right[i] != 0){
ans += _time[i];
num++;
}
}
printf("%d %d", num, ans);
return 0;
}
非特殊说明,本博所有文章均为博主原创,未经许可不得转载。
https://www.prolightsfxjh.com/
Thank you!
------from ProLightsfx
非特殊说明,本博所有文章均为博主原创,未经许可不得转载。
如经许可后转载,请注明出处:https://prolightsfxjh.com/article/summer-training-team-selection-1-problem-a-acm-contest-scoring/
共有 0 条评论