結果
問題 | No.13 囲みたい! |
ユーザー | ninoinui |
提出日時 | 2020-07-21 14:17:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,114 bytes |
コンパイル時間 | 2,401 ms |
コンパイル使用メモリ | 217,072 KB |
実行使用メモリ | 16,412 KB |
最終ジャッジ日時 | 2024-06-09 08:32:40 |
合計ジャッジ時間 | 8,942 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 9 ms
10,496 KB |
testcase_04 | AC | 6 ms
6,940 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; vector<vector<int>> G; void dfs(int v, int pre, vector<bool> seen) { seen.at(v) = 1; for (auto next : G.at(v)) { if (next == pre) continue; if (seen.at(next)) { cout << "possible" << "\n"; exit(0); } dfs(next, v, seen); } } int main() { int W, H, N = 0; cin >> W >> H; vector<vector<pair<int, int>>> M(H, vector<pair<int, int>>(W)); for (int i = 0; i < H; i++) { for (int j = 0; j < W; j++) { int m; cin >> m; M.at(i).at(j) = {m, N++}; } } G.resize(N); vector<int> mh(4), mw(4); mh = {-1, 0, 1, 0}; mw = {0, 1, 0, -1}; for (int h = 0; h < H; h++) { for (int w = 0; w < W; w++) { for (int i = 0; i < 4; i++) { int nh = h + mh.at(i); int nw = w + mw.at(i); if (nh < 0 || nh >= H || nw < 0 || nw >= W) continue; auto [a, b] = M.at(h).at(w); auto [c, d] = M.at(nh).at(nw); if (a == c) G.at(b).push_back(d); } } } vector<bool> seen(N); for (int i = 0; i < N; i++) dfs(i, -1, seen); cout << "impossible" << "\n"; }