結果
問題 | No.13 囲みたい! |
ユーザー | btk |
提出日時 | 2015-05-03 20:52:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,510 bytes |
コンパイル時間 | 981 ms |
コンパイル使用メモリ | 96,952 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-05 17:44:55 |
合計ジャッジ時間 | 1,654 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<fstream> #include<sstream> #include<string> #include<cstdio> #include<cstdlib> #include<cstring> #include<ctime> #include<stack> #include<queue> #include<set> #include<map> #include<vector> #include<list> #include<algorithm> #include<utility> #include<complex> #include<functional> using namespace std; typedef pair<int, int> P; typedef pair<P, P> PP; int H, W; int M[110][110]; vector<list<P>> cd; #define mp(a,b,c,d) make_pair( make_pair((a),(b)),make_pair((c),(d)) ) #define dir(xx,yy,x,y,i)(xx)=(x)+dir[(i)],(yy)=(y)+dir[(i)+1]; const int dir[] = { 0, 1, 0, -1, 0 }; bool bfs(int c, int x, int y){ queue<PP> que; que.push(mp(x,y,-1,-1)); M[x][y] *= -1; while (que.empty() == false){ auto v = que.front(); que.pop(); for (int i = 0; i < 4; i++){ int xx, yy; dir(xx, yy, v.first.first, v.first.second,i); if ((xx != v.second.first) || (yy != v.second.second)){ if (M[xx][yy] == -c){ return true; } if (M[xx][yy] == c){ M[xx][yy] *= -1; que.push(mp(xx, yy, v.first.first, v.first.second)); } } } } return false; } int main(void){ cd.resize(1010); cin >> W >> H; for (int i = 1; i <=H; i++) { for (int j = 1; j <= W; j++) { cin >> M[i][j]; cd[M[i][j]].push_back(make_pair(i, j)); } } for (int i = 1; i <= 1000; i++) if (cd[i].size() >= 4u) if (bfs(i, cd[i].front().first, cd[i].front().second)) { cout << "possible" << endl; return 0; } cout << "impossible" << endl; return 0; }