結果
問題 | No.2574 Defect-free Rectangles |
ユーザー | aplysiaSheep |
提出日時 | 2023-11-13 06:46:10 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,160 bytes |
コンパイル時間 | 2,993 ms |
コンパイル使用メモリ | 254,472 KB |
実行使用メモリ | 39,296 KB |
最終ジャッジ日時 | 2024-09-26 03:13:23 |
合計ジャッジ時間 | 4,851 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 50 ms
7,808 KB |
testcase_07 | AC | 16 ms
7,424 KB |
testcase_08 | AC | 15 ms
7,296 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 73 ms
14,720 KB |
testcase_15 | AC | 55 ms
8,960 KB |
testcase_16 | AC | 33 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int h, w, n; cin >> h >> w >> n; vector<int> a(n), b(n); for(int i = 0; i < n; ++i) { cin >> a[i] >> b[i]; a[i]--, b[i]--; } vector<vector<int>> defects(h, vector<int>(w)); for(int i = 0; i < n; ++i) defects[a[i]][b[i]] = 1; vector<int> dp(w); int ans = 0; for(int i = 0; i < h; ++i) { vector<tuple<int, int, int>> x; for(int j = 0; j < w; ++j) { if(defects[i][j]) { dp[j] = 0; x.clear(); continue; } dp[j]++; int k = dp[j]; int t = 1; while(!x.empty()) { auto [l, w, s] = x.back(); if(l < k) break; t += w; x.pop_back(); } if(x.empty()) { x.push_back({k, t, k * t}); ans += k * t; } else { auto [l, w, s] = x.back(); x.push_back({k, t, s + k * t}); ans += s + k * t; } } } cout << ans << endl; }