hihoCoder 1258 Osu! Master [Ad Hoc]

博客提及2015北京区域赛J题,给出题目链接http://hihocoder.com/problemset/problem/1258,强调字符串处理中scanf()好用,还指出要把S和C 1,B 1算进去。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

2015 北京区域赛 J题
http://hihocoder.com/problemset/problem/1258

字符串处理,scanf()真的好用
只要把S和C 1,B 1算进去了就好了

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
const int MAXN = 10000 + 9;
int n;
struct V
{
  char ch;
  int x;
};
V a[MAXN];
void solve() {
  memset(a, 0, sizeof(a));
  for (int i = 0; i < n; i++) {
    scanf("%c", &a[i].ch);
    if (a[i].ch == 'C' || a[i].ch == 'B') {
      scanf(" %d\n", &a[i].x);
    } else {
      a[i].x = 0;
      scanf("\n");
    }
  }
  int ans = 0;
  for (int i = 0; i < n; i++) {
    if (a[i].ch == 'S') ans++;
    if (a[i].ch == 'C' && a[i].x == 1) ans++;
    if (a[i].ch == 'B' && a[i].x == 1) ans++;
  }
  printf("%d\n", ans);
}
int main() {
  //freopen("in.txt", "r", stdin);
  while (scanf("%d\n", &n) != EOF) {
    solve();
  }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值