結果

問題 No.11 カードマッチ
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-10-02 18:26:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 5,000 ms
コード長 697 bytes
コンパイル時間 3,038 ms
コンパイル使用メモリ 245,584 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-10-02 18:26:27
合計ジャッジ時間 3,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 6 ms
9,836 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 12 ms
18,944 KB
testcase_07 AC 6 ms
8,448 KB
testcase_08 AC 8 ms
11,264 KB
testcase_09 AC 12 ms
18,796 KB
testcase_10 AC 10 ms
15,904 KB
testcase_11 AC 9 ms
14,480 KB
testcase_12 AC 10 ms
15,104 KB
testcase_13 AC 8 ms
14,208 KB
testcase_14 AC 7 ms
9,216 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for(long long i = 0; i < n; i++)
#define ALL(v) (v).begin(), (v).end()
using namespace std;

using lint = long long;

int main() {
    lint w, h, n;
    cin >> w >> h >> n;
    vector<lint> gyo(w, 0), retsu(h, 0);
    rep(i, n) {
        int s, k;
        cin >> s >> k;
        s--;
        k--;
        gyo[s]++;
        retsu[k]++;
    }
    lint ans = 0;
    rep(i, w) {
        if (gyo[i] > 0) {
            ans += h - gyo[i];
        }
    }
    lint cnt = 0;
    rep(i, w) {
        if (gyo[i] == 0) {
            cnt++;
        }
    }
    rep(i, h) {
        if (retsu[i] > 0) {
            ans += cnt;
        }
    }
    cout << ans << endl;
}
0