結果
問題 | No.348 カゴメカゴメ |
ユーザー | Hachimori |
提出日時 | 2016-03-05 17:21:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 3,396 bytes |
コンパイル時間 | 916 ms |
コンパイル使用メモリ | 73,480 KB |
実行使用メモリ | 814,696 KB |
最終ジャッジ日時 | 2024-10-01 20:08:32 |
合計ジャッジ時間 | 3,773 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 117 ms
45,168 KB |
testcase_01 | AC | 4 ms
8,568 KB |
testcase_02 | MLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
ソースコード
#include<iostream> #include<vector> #include<set> #include<cstring> #include<cstdio> #define r first #define c second using namespace std; typedef pair<int, int> Point; const int BUF = 1005; int row, col; char b[BUF][BUF]; void read() { cin >> row >> col; for (int i = 0; i < row + 2; ++i) { for (int j = 0; j < col + 2; ++j) { b[i][j] = '.'; } } for (int i = 1; i <= row; ++i) { for (int j = 1; j <= col; ++j) { cin >> b[i][j]; } } row += 2; col += 2; } bool isInside(int r, int c) { return 0 <= r && r < row && 0 <= c && c < col; } void traceRing(int r, int c, int curId, int ringId[BUF][BUF]) { static int dr[] = {-1, -1, -1, 0, 1, 1, 1, 0}; static int dc[] = {-1, 0, 1, 1, 1, 0, -1, -1}; ringId[r][c] = curId; for (int i = 0; i < 8; ++i) { int nr = r + dr[i]; int nc = c + dc[i]; if (isInside(nr, nc) && b[nr][nc] == 'x' && ringId[nr][nc] == -1) { traceRing(nr, nc, curId, ringId); } } } void traceArea(int r, int c, int currId, bool visited[BUF][BUF], vector< set<int> > &adjRing, int ringId[BUF][BUF]) { visited[r][c] = true; static int dr[] = {-1, 0, 1, 0}; static int dc[] = {0, 1, 0, -1}; for (int i = 0; i < 4; ++i) { int nr = r + dr[i]; int nc = c + dc[i]; if (!isInside(nr, nc)) continue; if (b[nr][nc] == 'x') { if (currId != ringId[nr][nc]) adjRing[currId].insert(ringId[nr][nc]); } else if (!visited[nr][nc]) { traceArea(nr, nc, currId, visited, adjRing, ringId); } } } int doDp(bool preUsed, int curr, vector< vector<int> > &dp, vector< set<int> > &adjRing, int ringId2cnt[BUF]) { int &ret = dp[preUsed][curr]; if (ret != -1) return ret; int A = 0; // use current int B = 0; // do not use current for (set<int>::iterator it = adjRing[curr].begin(); it != adjRing[curr].end(); ++it) { A += doDp(true, *it, dp, adjRing, ringId2cnt); B += doDp(false, *it, dp, adjRing, ringId2cnt); } return ret = (preUsed ? B : max(A + ringId2cnt[curr], B)); } void work() { int nRing = 1; static int ringId[BUF][BUF]; memset(ringId, -1, sizeof(ringId)); for (int i = 0; i < row; ++i) for (int j = 0; j < col; ++j) if (b[i][j] == 'x' && ringId[i][j] == -1) { traceRing(i, j, nRing++, ringId); } static int ringId2cnt[BUF]; memset(ringId2cnt, 0, sizeof(ringId2cnt)); for (int i = 0; i < row; ++i) for (int j = 0; j < col; ++j) if (ringId[i][j] != -1) { ++ringId2cnt[ringId[i][j]]; } vector< set<int> > adjRing(nRing, set<int>()); static bool visited[BUF][BUF]; memset(visited, 0, sizeof(visited)); traceArea(0, 0, 0, visited, adjRing, ringId); for (int i = 0; i < row; ++i) for (int j = 0; j < col; ++j) if (!visited[i][j] && ringId[i][j] != -1) { traceArea(i, j, ringId[i][j], visited, adjRing, ringId); } vector< vector<int> > dp(2, vector<int>(nRing, -1)); cout << doDp(false, 0, dp, adjRing, ringId2cnt) << endl; } int main() { read(); work(); return 0; }