結果

問題 No.11 カードマッチ
ユーザー  nemunemu nemunemu
提出日時 2023-05-01 09:40:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 962 bytes
コンパイル時間 988 ms
コンパイル使用メモリ 78,256 KB
実行使用メモリ 814,820 KB
最終ジャッジ日時 2024-11-20 09:48:44
合計ジャッジ時間 14,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 MLE -
testcase_05 AC 6 ms
6,692 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 8 ms
6,692 KB
testcase_16 AC 40 ms
18,816 KB
testcase_17 AC 30 ms
8,576 KB
testcase_18 AC 51 ms
28,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long ll;

int main(){
    ll W, H, N;
    cin >> W >> H >> N;
    vector<ll> S(N), K(N);
    vector<vector<bool>> table(W, vector<bool>(H, false));
    for (int i = 0; i < N; ++i) {
        cin >> S[i] >> K[i];
        table[S[i] - 1][K[i] - 1] = true;
    }

    ll res = 0;
    for (ll i = 0; i < W; ++i) {
        if (find(S.begin(), S.end(), i + 1) != S.end()) {
            for (ll j = 0; j < H; ++j) {
                if (!table[i][j]) {
                    ++res;
                    table[i][j] = true;
                }
            }
        }
    }
    for (ll j = 0; j < H; ++j) {
        if (find(K.begin(), K.end(), j + 1) != K.end()) {
            for (ll i = 0; i < W; ++i) {
                if (!table[i][j]) {
                    ++res;
                    table[i][j] = true;
                }
            }
        }
    }

    cout << res << endl;
}
0