結果
問題 | No.348 カゴメカゴメ |
ユーザー | anta |
提出日時 | 2016-02-26 22:48:04 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,186 bytes |
コンパイル時間 | 1,102 ms |
コンパイル使用メモリ | 95,592 KB |
実行使用メモリ | 51,432 KB |
最終ジャッジ日時 | 2024-09-22 22:19:13 |
合計ジャッジ時間 | 5,466 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 162 ms
47,180 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 173 ms
51,432 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 6 ms
6,944 KB |
testcase_13 | AC | 3 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 136 ms
40,520 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | AC | 176 ms
46,536 KB |
testcase_25 | AC | 178 ms
46,924 KB |
testcase_26 | AC | 178 ms
46,780 KB |
testcase_27 | AC | 177 ms
46,600 KB |
testcase_28 | AC | 180 ms
47,016 KB |
testcase_29 | AC | 179 ms
46,592 KB |
testcase_30 | AC | 180 ms
46,656 KB |
testcase_31 | AC | 178 ms
46,580 KB |
testcase_32 | AC | 179 ms
46,584 KB |
testcase_33 | AC | 17 ms
6,940 KB |
testcase_34 | AC | 17 ms
6,940 KB |
testcase_35 | AC | 17 ms
6,940 KB |
testcase_36 | AC | 17 ms
6,940 KB |
testcase_37 | AC | 17 ms
6,944 KB |
testcase_38 | AC | 18 ms
6,944 KB |
testcase_39 | AC | 17 ms
6,948 KB |
testcase_40 | AC | 17 ms
6,940 KB |
testcase_41 | WA | - |
testcase_42 | AC | 17 ms
7,040 KB |
testcase_43 | AC | 3 ms
6,940 KB |
testcase_44 | WA | - |
testcase_45 | AC | 4 ms
6,940 KB |
testcase_46 | AC | 4 ms
6,940 KB |
testcase_47 | AC | 4 ms
6,940 KB |
testcase_48 | WA | - |
testcase_49 | AC | 4 ms
6,940 KB |
testcase_50 | AC | 4 ms
6,944 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
ソースコード
#include <string> #include <vector> #include <algorithm> #include <numeric> #include <set> #include <map> #include <queue> #include <iostream> #include <sstream> #include <cstdio> #include <cmath> #include <ctime> #include <cstring> #include <cctype> #include <cassert> #include <limits> #include <functional> #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define rer(i,l,u) for(int (i)=(int)(l);(i)<=(int)(u);++(i)) #define reu(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i)) #if defined(_MSC_VER) || __cplusplus > 199711L #define aut(r,v) auto r = (v) #else #define aut(r,v) __typeof(v) r = (v) #endif #define each(it,o) for(aut(it, (o).begin()); it != (o).end(); ++ it) #define all(o) (o).begin(), (o).end() #define pb(x) push_back(x) #define mp(x,y) make_pair((x),(y)) #define mset(m,v) memset(m,v,sizeof(m)) #define INF 0x3f3f3f3f #define INFL 0x3f3f3f3f3f3f3f3fLL using namespace std; typedef vector<int> vi; typedef pair<int, int> pii; typedef vector<pair<int, int> > vpii; typedef long long ll; template<typename T, typename U> inline void amin(T &x, U y) { if(y < x) x = y; } template<typename T, typename U> inline void amax(T &x, U y) { if(x < y) x = y; } struct UnionFind { vector<int> data; void init(int n) { data.assign(n, -1); } bool unionSet(int x, int y) { x = root(x); y = root(y); if(x != y) { if(data[y] < data[x]) swap(x, y); data[x] += data[y]; data[y] = x; } return x != y; } bool findSet(int x, int y) { return root(x) == root(y); } int root(int x) { return data[x] < 0 ? x : data[x] = root(data[x]); } int size(int x) { return -data[root(x)]; } }; vector<int> memo; int rec(int i, int p, bool b, const vector<vi> &g, const vector<string> &grid, UnionFind &uf) { int &r = memo[i * 2 + b]; if(r != -1) return r; if(grid[i / grid[0].size()][i % grid[0].size()] == '.') { r = 0; each(j, g[i]) if(*j != p) r += rec(*j, i, b, g, grid, uf); } else { int t = 0, u = 0; each(j, g[i]) if(*j != p) { t += rec(*j, i, false, g, grid, uf); u += rec(*j, i, true, g, grid, uf); } r = t; if(!b) amax(r, u + uf.size(i)); } return r; } int main() { int N; int M; while(~scanf("%d%d", &N, &M)) { vector<string> grid(N); rep(i, N) cin >> grid[i]; UnionFind uf; uf.init(N * M); rep(i, N) rep(j, M) { rer(dy, -1, 1) rer(dx, -1, 1) if(dy || dx) { int yy = i + dy, xx = j + dx; if(yy == -1 || xx == -1 || yy == N || xx == M) continue; if(grid[i][j] == '.' && abs(dy) + abs(dx) > 1) continue; if(grid[i][j] != grid[yy][xx]) { continue; } uf.unionSet(i * M + j, yy * M + xx); } } vector<vi> g(N * M); rep(i, N) rep(j, M) { rer(dy, -1, 1) rer(dx, -1, 1) if(dy || dx) { int yy = i + dy, xx = j + dx; if(yy == -1 || xx == -1 || yy == N || xx == M) continue; if(abs(dy) + abs(dx) > 1) continue; if(grid[i][j] != grid[yy][xx]) { g[uf.root(i * M + j)].push_back(uf.root(yy * M + xx)); continue; } } } rep(i, N * M) { vi &v = g[i]; sort(v.begin(), v.end()); v.erase(unique(v.begin(), v.end()), v.end()); } memo.assign(N * M * 2, -1); int ans = rec(uf.root(0), -1, false, g, grid, uf); printf("%d\n", ans); } return 0; }