結果

問題 No.1338 Giant Class
ユーザー トッティトッティ
提出日時 2021-01-15 21:56:21
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 399 bytes
コンパイル時間 1,108 ms
コンパイル使用メモリ 119,040 KB
実行使用メモリ 814,532 KB
最終ジャッジ日時 2024-05-04 23:39:03
合計ジャッジ時間 7,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 193 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 158 ms
72,704 KB
testcase_07 AC 218 ms
72,960 KB
testcase_08 AC 137 ms
25,364 KB
testcase_09 AC 122 ms
9,976 KB
testcase_10 AC 225 ms
26,240 KB
testcase_11 AC 40 ms
64,000 KB
testcase_12 AC 149 ms
5,376 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

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