結果
問題 | No.2946 Puyo |
ユーザー | hatsuka_iwa |
提出日時 | 2024-11-11 01:38:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,315 bytes |
コンパイル時間 | 2,326 ms |
コンパイル使用メモリ | 215,824 KB |
実行使用メモリ | 616,332 KB |
最終ジャッジ日時 | 2024-11-11 01:38:17 |
合計ジャッジ時間 | 9,964 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 77 ms
5,632 KB |
testcase_04 | AC | 55 ms
5,632 KB |
testcase_05 | AC | 55 ms
5,632 KB |
testcase_06 | AC | 55 ms
5,632 KB |
testcase_07 | AC | 55 ms
5,760 KB |
testcase_08 | AC | 6 ms
5,248 KB |
testcase_09 | AC | 19 ms
5,248 KB |
testcase_10 | AC | 6 ms
5,248 KB |
testcase_11 | AC | 29 ms
5,248 KB |
testcase_12 | AC | 5 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 7 ms
5,248 KB |
testcase_15 | AC | 4 ms
5,248 KB |
testcase_16 | AC | 10 ms
5,248 KB |
testcase_17 | AC | 29 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 17 ms
5,248 KB |
testcase_20 | AC | 22 ms
5,248 KB |
testcase_21 | AC | 37 ms
5,248 KB |
testcase_22 | AC | 6 ms
5,248 KB |
testcase_23 | AC | 29 ms
5,248 KB |
testcase_24 | AC | 68 ms
5,248 KB |
testcase_25 | AC | 59 ms
5,248 KB |
testcase_26 | AC | 64 ms
5,248 KB |
testcase_27 | AC | 3 ms
5,248 KB |
testcase_28 | MLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int H, W; cin >> H >> W; vector<int> dx = {-1, 0, 1, 0}, dy = {0, -1, 0, 1}; vector<string> G(H); for (string &S : G) cin >> S; vector seen(H, vector<bool>(W)); queue<pair<int, int>> Q; for (int i = 0; i < H; i++) { for (int j = 0; j < W; j++) { if (G.at(i).at(j) == '.') continue; int Count = 0; char A = G.at(i).at(j); Q.push({i, j}); while (!Q.empty()){ Count++; int y = Q.front().first, x = Q.front().second; seen.at(y).at(x) = true; Q.pop(); for (int k = 0; k < 4; k++) { int ny = y + dy.at(k), nx = x + dx.at(k); if (ny < 0 || ny >= H || nx < 0 || nx >= W || seen.at(ny).at(nx) || G.at(ny).at(nx) != A) continue; Q.push({ny, nx}); } } if (Count > 3) { Q.push({i, j}); while (!Q.empty()) { int y = Q.front().first, x = Q.front().second; G.at(y).at(x) = '.'; Q.pop(); for (int k = 0; k < 4; k++) { int ny = y + dy.at(k), nx = x + dx.at(k); if (ny < 0 || ny >= H || nx < 0 || nx >= W || G.at(ny).at(nx) != A) continue; Q.push({ny, nx}); } } } } } for (string S : G) cout << S << endl; }