結果
問題 | No.13 囲みたい! |
ユーザー | Twizz |
提出日時 | 2017-05-18 11:34:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 851 bytes |
コンパイル時間 | 2,152 ms |
コンパイル使用メモリ | 159,072 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-18 19:06:10 |
合計ジャッジ時間 | 2,175 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 4 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,940 KB |
ソースコード
#include"bits/stdc++.h" //#include<bits/stdc++.h> using namespace std; #define print(x) cout<<x<<endl; #define rep(i,a,b) for(int i=a;i<b;i++) typedef long long ll; const ll mod = 10000000000; int h, w; int m[102][102] = {}; int flag[102][102] = {}; int dx[4] = { 0,1,0,-1 }; int dy[4] = { 1,0,-1,0 }; bool dfs(int y, int x, int pre) { flag[y][x] = 1; rep(k, 0, 4) { int nx = y + dx[k]; int ny = x + dy[k]; if (pre == k)continue; if (!(nx >= 0 && nx < w&&ny >= 0 && ny < h))continue; if (m[ny][nx] != m[y][x])continue; if (flag[ny][nx])return 1; if (dfs(ny, nx, (k + 2) % 4))return 1; } return 0; } int main() { cin >> h >> w; rep(j, 0, h) { rep(i, 0, w) { cin >> m[i][j]; } } bool f = 0; rep(j, 0, h) { rep(i, 0, w) { if (dfs(i, j, 0)) { print("possible"); return 0; } } } print("impossible"); }