結果

問題 No.1338 Giant Class
ユーザー トッティトッティ
提出日時 2021-01-15 22:11:42
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 917 ms
コンパイル使用メモリ 127,744 KB
実行使用メモリ 7,948 KB
最終ジャッジ日時 2024-05-05 00:04:26
合計ジャッジ時間 4,784 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 183 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 132 ms
6,028 KB
testcase_07 AC 187 ms
7,916 KB
testcase_08 AC 122 ms
5,648 KB
testcase_09 AC 115 ms
5,392 KB
testcase_10 AC 221 ms
7,820 KB
testcase_11 AC 19 ms
5,376 KB
testcase_12 AC 137 ms
5,632 KB
testcase_13 AC 126 ms
5,776 KB
testcase_14 AC 34 ms
5,376 KB
testcase_15 AC 52 ms
5,376 KB
testcase_16 AC 18 ms
5,376 KB
testcase_17 AC 128 ms
5,520 KB
testcase_18 AC 33 ms
5,376 KB
testcase_19 AC 58 ms
5,376 KB
testcase_20 AC 221 ms
7,820 KB
testcase_21 AC 223 ms
7,948 KB
testcase_22 AC 221 ms
7,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <unordered_map>

int main() {
  int64_t height, width, nq;
  std::cin >> height >> width >> nq;

  std::unordered_map<size_t, int64_t> map;
  size_t now = width * height;
  int64_t h, w;
  for (size_t i = 0; i < nq; i++) {
    std::cin >> h >> w;
    h--;
    auto f = map.find(w);
    if (f != map.end()) {
      auto &pair = *f;
      if (pair.second > h) {
        now -= pair.second - h;
        pair.second = h;
      }
    } else {
      now -= height - h;
      map[w] = h;
    }
    std::cout << now << std::endl;
  }
}
0