結果
問題 | No.348 カゴメカゴメ |
ユーザー | roiti46 |
提出日時 | 2016-02-27 00:02:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,694 bytes |
コンパイル時間 | 1,378 ms |
コンパイル使用メモリ | 159,352 KB |
実行使用メモリ | 71,032 KB |
最終ジャッジ日時 | 2024-09-24 10:37:56 |
合計ジャッジ時間 | 4,043 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
24,100 KB |
testcase_01 | WA | - |
testcase_02 | AC | 52 ms
29,408 KB |
testcase_03 | AC | 37 ms
8,476 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 3 ms
8,488 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 4 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 87 ms
71,032 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 3 ms
6,940 KB |
testcase_48 | AC | 2 ms
6,944 KB |
testcase_49 | WA | - |
testcase_50 | AC | 3 ms
7,744 KB |
testcase_51 | WA | - |
testcase_52 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; template<typename T> using Graph = vector<vector<T>>; #define REP(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(i, a) REP(i, 0, a) #define EACH(i, a) for (auto i: a) #define ITR(x, a) for (__typeof(a.begin()) x = a.begin(); x != a.end(); x++) #define ALL(a) (a.begin()), (a.end()) #define HAS(a, x) (a.find(x) != a.end()) #define endl '\n' int dx4[] = {1, 0, -1, 0}, dy4[] = {0, 1, 0, -1}; int dx8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dy8[] = {0, 1, 1, 1, 0, -1, -1, -1}; int N, M; char G[1005][1005]; int depth[1005][1005]; int ans[2]; bool is_inside(int x, int y) { return (0 <= x && x < M && 0 <= y && y < N); } int dfs(int x, int y) { G[y][x] = 'X'; int res = 1; rep(i, 8) { int nx = x + dx8[i], ny = y + dy8[i]; if (!is_inside(nx, ny)) continue; if (G[ny][nx] != 'x') continue; res = dfs(nx, ny) + 1; } return res; } void dfs_dot(int x, int y, int d) { depth[y][x] = d; rep(i, 4) { int nx = x + dx4[i], ny = y + dy4[i]; if (!is_inside(nx, ny)) continue; if (G[ny][nx] != '.') continue; if (depth[ny][nx] != -1) continue; dfs_dot(nx, ny, d); } } int main(void) { cin.tie(0); ios::sync_with_stdio(false); cin >> N >> M; rep(y, N + 2) rep(x, M + 2) G[y][x] = '.'; rep(y, N) rep(x, M) cin >> G[y + 1][x + 1]; rep(y, N + 2) rep(x, M + 2) depth[y][x] = -1; N += 2; M += 2; int d = -1; rep(y, N) rep(x, M) { if (G[y][x] == 'x') { ans[d%2] += dfs(x, y); } if (G[y][x] == '.') { if (depth[y][x] == -1) dfs_dot(x, y, d + 1); d = depth[y][x]; } } cout << max(ans[0], ans[1]) << endl; return 0; }