问题标题: 酷町堂:4708 海港III

0
0
已解决
曹博扬
曹博扬
初级天翼
初级天翼
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cmath>
#include<string>
using namespace std;
int n,a[105],b[105];
int h[15],t[105];
int main(){
    cin>>n;
    for(int i=1;i<=n;i++){
        cin>>a[i]>>b[i];
        for(int j=1;j<=b[i];j++){
            cin>>h[i];
            if(a[i]==0) t[h[i]]++;
            else t[h[i]]--;
        }
    }
    for(int i=1;i<=10;i++){
        cout<<t[i]<<" ";
    }
    return 0;
}

求找错


0
已采纳
胡钰妍
胡钰妍
资深光能
资深光能
  • for(int i = 1 ; i <= n ; i ++) {
  • cin >> a >> b;
  • if(a == 1)
  • for(int j = 1 ; j <= b ; j ++) {
  • cin >> c;
  • f[c] --;
  • }
  • else
  • for(int j = 1 ; j <= b ; j ++) {
  • cin >> c;
  • f[c] ++;
  • }
  • }
  • for(int i = 1 ; i <= 10 ; i ++) cout << f[i] << ' ';
0
0
郑金顺
郑金顺
中级光能
中级光能

不是else t[h[i]]--; 是t[h[i]]-=a[i]

0
我要回答