結果
問題 | No.13 囲みたい! |
ユーザー | yukitf |
提出日時 | 2020-08-17 20:09:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,930 bytes |
コンパイル時間 | 2,085 ms |
コンパイル使用メモリ | 182,176 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 11:16:36 |
合計ジャッジ時間 | 2,891 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 3 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i, n) for(int i = 0; i < (n); i++) #define REPS(i, n) for(int i = 1; i <= (n); i++) #define RREP(i, n) for(int i = (n)-1; i >= 0; i--) #define RREPS(i, n) for(int i = (n); i > 0; i--) #define ALL(v) v.begin(), v.end() #define RALL(v) v.rbegin(), v.rend() #define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end()) #define mp make_pair #define mt make_tuple #define pb push_back using ll = long long; using pi = pair<int, int>; using pl = pair<ll, ll>; using vi = vector<int>; using vl = vector<ll>; using vs = vector<string>; using vb = vector<bool>; using vvi = vector<vi>; const int MOD = 1e9 + 7; const int INF = 1e9 + 7; const ll INFL = 1e18; const double PI = 3.141592653589793; const double EPS = 1e-9; template<class T> bool chmax(T &a, const T &b) { if(a < b) { a = b; return true; } return false; } template<class T> bool chmin(T &a, const T &b) { if(a > b) { a = b; return true; } return false; } int W, H; vvi G; int dh[] = {1, 0, 0, -1}; int dw[] = {0, 1, -1, 0}; vector<vb> v; bool dfs(int h, int w, int n, int oh, int ow) { v[h][w] = true; REP(i, 4) { int nh = h + dh[i]; int nw = w + dw[i]; if(0 <= nh && nh < H && 0 <= nw && nw < W && G[nh][nw] == n) { if(nh == oh && nw == ow) continue; if(v[nh][nw]) return true; return dfs(nh, nw, n, h, w); } } return false; } signed main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); cin >> W >> H; G.resize(H, vi(W)); v.resize(H, vb(W, false)); REP(i, H) REP(j, W) cin >> G[i][j]; REP(i, H) { REP(j, W) { if(!v[i][j] && dfs(i, j, G[i][j], -1, -1)) { cout << "possible" << endl; return 0; } } } cout << "impossible" << endl; }