結果
問題 | No.348 カゴメカゴメ |
ユーザー | pekempey |
提出日時 | 2016-02-26 23:13:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,602 bytes |
コンパイル時間 | 1,617 ms |
コンパイル使用メモリ | 177,080 KB |
実行使用メモリ | 124,788 KB |
最終ジャッジ日時 | 2024-09-22 22:59:27 |
合計ジャッジ時間 | 22,659 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 84 ms
117,132 KB |
testcase_01 | AC | 35 ms
99,784 KB |
testcase_02 | AC | 79 ms
124,788 KB |
testcase_03 | AC | 97 ms
117,716 KB |
testcase_04 | AC | 35 ms
99,776 KB |
testcase_05 | AC | 34 ms
99,780 KB |
testcase_06 | AC | 34 ms
99,780 KB |
testcase_07 | AC | 34 ms
99,784 KB |
testcase_08 | AC | 35 ms
99,784 KB |
testcase_09 | AC | 36 ms
99,784 KB |
testcase_10 | RE | - |
testcase_11 | AC | 35 ms
99,528 KB |
testcase_12 | AC | 36 ms
100,036 KB |
testcase_13 | RE | - |
testcase_14 | AC | 35 ms
99,780 KB |
testcase_15 | AC | 62 ms
109,072 KB |
testcase_16 | AC | 34 ms
99,656 KB |
testcase_17 | AC | 34 ms
99,648 KB |
testcase_18 | AC | 35 ms
99,776 KB |
testcase_19 | RE | - |
testcase_20 | AC | 34 ms
99,776 KB |
testcase_21 | AC | 35 ms
99,780 KB |
testcase_22 | AC | 35 ms
99,652 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | AC | 36 ms
100,040 KB |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | AC | 36 ms
100,036 KB |
testcase_51 | RE | - |
testcase_52 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, a) for (int i = 0; i < (a); i++) #define rep2(i, a, b) for (int i = (a); i < (b); i++) #define repr(i, a) for (int i = (a) - 1; i >= 0; i--) #define repr2(i, a, b) for (int i = (b) - 1; i >= (a); i--) template<class T1, class T2> bool chmin(T1 &a, T2 b) { return b < a && (a = b, true); } template<class T1, class T2> bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); } typedef long long ll; struct UnionFind { vector<int> parent, size; UnionFind(int n) : parent(n), size(n, 1) { for (int i = 0; i < n; i++) parent[i] = i; } int operator[](int x) { return parent[x] == x ? x : (parent[x] = operator[](parent[x])); } bool merge(int x, int y) { if ((x = operator[](x)) == (y = operator[](y))) return false; parent[x] = parent[y] = size[x] > size[y] ? parent[x] : parent[y]; size[x] = size[y] = size[x] + size[y]; return true; } }; int dy[] = { 1, 1, 1, 0, 0, -1, -1, -1 }; int dx[] = { 1, 0, -1, 1, -1, 1, 0, -1 }; int dy2[] = { 1, 0, -1, 0 }; int dx2[] = { 0, -1, 0, 1 }; set<int> G[1010101]; set<int> rG[1010101]; ll dp[1010101][2]; void dfs(int curr, int prev, UnionFind &uf) { dp[curr][1] += uf.size[curr]; for (int next : G[curr]) if (next != prev && next != curr) { dfs(next, curr, uf); dp[curr][0] += max(dp[next][0], dp[next][1]); dp[curr][1] += dp[next][0]; } } int main() { int h, w; cin >> h >> w; vector<string> g(h); rep(i, h) cin >> g[i]; UnionFind uf(h * w); rep(y, h) rep(x, w) if (g[y][x] == 'x') { rep(k, 8) { int ny = y + dy[k]; int nx = x + dx[k]; if (ny < 0 || ny >= h || nx < 0 || nx >= w) continue; if (g[ny][nx] != 'x') continue; uf.merge(y * w + x, ny * w + nx); } } static bool used[1010101]; static bool vis[1010][1010]; rep(i, h) rep(j, w) if (g[i][j] == 'x') { int rt = uf[i * w + j]; if (used[rt]) continue; used[rt] = true; int y = i + 1; int x = j; if (g[y][x] == 'x') continue; queue<pair<int, int>> q; q.emplace(y, x); vis[y][x] = true; while (!q.empty()) { tie(y, x) = q.front(); q.pop(); rep(k, 4) { int ny = y + dy2[k]; int nx = x + dx2[k]; if (g[ny][nx] == 'x') { if (rt != uf[ny * w + nx]) { int nn = uf[ny * w + nx]; G[rt].insert(nn); rG[nn].insert(rt); } } else if (chmax(vis[ny][nx], true)) { q.emplace(ny, nx); } } } } ll ans = 0; rep(i, h) rep(j, w) { int c = i * w + j; if (uf[c] != c) continue; if (g[i][j] == 'x' && rG[c].size() == 0) { dfs(c, -1, uf); ans += max(dp[c][0], dp[c][1]); } } cout << ans << endl; return 0; }