結果

問題 No.11 カードマッチ
ユーザー youjo_yamiotiyoujo_yamioti
提出日時 2018-12-02 10:55:05
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 414 ms / 5,000 ms
コード長 725 bytes
コンパイル時間 1,538 ms
コンパイル使用メモリ 161,000 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 13:25:44
合計ジャッジ時間 4,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 141 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 410 ms
5,376 KB
testcase_07 AC 105 ms
5,376 KB
testcase_08 AC 206 ms
5,376 KB
testcase_09 AC 414 ms
5,376 KB
testcase_10 AC 189 ms
5,376 KB
testcase_11 AC 203 ms
5,376 KB
testcase_12 AC 217 ms
5,376 KB
testcase_13 AC 194 ms
5,376 KB
testcase_14 AC 140 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 13 ms
5,376 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 13 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int counter(vector<int> vec,int n){
    int i = 0;
    int c = 0;
    int l = vec.size();
    for(i=0;i<l;i++){
        if(vec[i] == n) c++;
    }
    return c;
}
int main(){
    int W,H,N;
    int sum = 0;
    cin >> W >> H >> N;
    vector<int> S(N+1,0);
    vector<int> K(N+1,0);
    for(int i=1;i<=N;i++){
        cin >> S[i];
        cin >> K[i];
    }
    for(int i=1;i<=W;i++){
        int c1 = counter(S,i);
        if(c1 != 0) sum += H-c1;
    }
    int c3 = 0;
    for(int i=1;i<=W;i++){
        if(counter(S,i) != 0) c3++;
    }
    for(int i=1;i<=H;i++){
        int c2 = counter(K,i);
        if(c2 != 0) sum += W - c3;
    }
    cout << sum << endl;
    return 0;
}
0