結果

問題 No.1338 Giant Class
ユーザー トッティトッティ
提出日時 2021-01-15 21:56:21
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 399 bytes
コンパイル時間 1,788 ms
コンパイル使用メモリ 119,808 KB
実行使用メモリ 817,408 KB
最終ジャッジ日時 2024-11-26 14:27:56
合計ジャッジ時間 8,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 175 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 173 ms
72,576 KB
testcase_07 AC 228 ms
72,832 KB
testcase_08 AC 132 ms
25,472 KB
testcase_09 AC 111 ms
9,728 KB
testcase_10 AC 204 ms
25,984 KB
testcase_11 AC 57 ms
64,128 KB
testcase_12 AC 127 ms
5,248 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

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

  std::vector<int64_t> min(width, height);
  size_t now = width * height;
  int64_t h, w;
  for (size_t i = 0; i < nq; i++) {
    std::cin >> h >> w;
    h--;
    w--;
    if (min[w] > h) {
      now -= min[w] - h;
      min[w] = h;
    }
    std::cout << now << std::endl;
  }
}
0