結果

問題 No.348 カゴメカゴメ
ユーザー chocoruskchocorusk
提出日時 2020-01-21 20:18:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 2,234 bytes
コンパイル時間 1,499 ms
コンパイル使用メモリ 120,692 KB
実行使用メモリ 72,064 KB
最終ジャッジ日時 2024-07-06 04:26:10
合計ジャッジ時間 4,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
43,904 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 132 ms
42,432 KB
testcase_03 AC 71 ms
15,104 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 4 ms
7,680 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 113 ms
72,064 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 83 ms
18,720 KB
testcase_24 AC 82 ms
18,440 KB
testcase_25 AC 82 ms
18,984 KB
testcase_26 AC 81 ms
18,364 KB
testcase_27 AC 81 ms
18,012 KB
testcase_28 AC 83 ms
19,008 KB
testcase_29 AC 81 ms
19,140 KB
testcase_30 AC 82 ms
18,760 KB
testcase_31 AC 80 ms
17,964 KB
testcase_32 AC 81 ms
18,792 KB
testcase_33 AC 9 ms
5,376 KB
testcase_34 AC 9 ms
5,376 KB
testcase_35 AC 9 ms
5,376 KB
testcase_36 AC 9 ms
5,504 KB
testcase_37 AC 10 ms
5,504 KB
testcase_38 AC 9 ms
5,376 KB
testcase_39 AC 10 ms
5,376 KB
testcase_40 AC 9 ms
5,376 KB
testcase_41 AC 10 ms
5,376 KB
testcase_42 AC 9 ms
5,376 KB
testcase_43 AC 3 ms
5,376 KB
testcase_44 AC 4 ms
5,376 KB
testcase_45 AC 4 ms
5,376 KB
testcase_46 AC 3 ms
5,376 KB
testcase_47 AC 4 ms
5,376 KB
testcase_48 AC 4 ms
5,376 KB
testcase_49 AC 4 ms
5,376 KB
testcase_50 AC 3 ms
5,376 KB
testcase_51 AC 4 ms
5,376 KB
testcase_52 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
int n, m;
string a[1010];
int b[1010][1010];
int c;
int dx[8]={1, -1, 0, 0, 1, 1, -1, -1}, dy[8]={0, 0, 1, -1, 1, -1, 1, -1};
void dfs(int x, int y, int v){
	b[x][y]=v;
	for(int k=0; k<4; k++){
		int x1=x+dx[k], y1=y+dy[k];
		if(x1<0 || x1>=n || y1<0 || y1>=m) continue;
		if(a[x1][y1]=='x' || b[x1][y1]>=0) continue;
		dfs(x1, y1, v);
	}
}
void dfs2(int x, int y, int v, int &cnt){
	cnt++;
	b[x][y]=v;
	for(int k=0; k<8; k++){
		int x1=x+dx[k], y1=y+dy[k];
		if(x1<0 || x1>=n || y1<0 || y1>=m) continue;
		if(b[x1][y1]>=0) continue;
		if(a[x1][y1]=='.'){
			if(k<4) dfs(x1, y1, v);
		}else dfs2(x1, y1, v, cnt);
	}
}
int cnt[1000010];
vector<vector<int>> g;
int dp[2][1000010];
void dfs3(int x, int p){
	for(auto y:g[x]){
		if(y==p) continue;
		dfs3(y, x);
		dp[1][x]+=dp[0][y];
		dp[0][x]+=max(dp[0][y], dp[1][y]);
	}
	dp[1][x]+=cnt[x];
}
int main()
{
	cin>>n>>m;
	for(int i=0; i<n+2; i++){
		for(int j=0; j<m+2; j++) a[i]+='.', b[i][j]=-1;
	}
	for(int i=1; i<=n; i++){
		string s; cin>>s;
		for(int j=1; j<=m; j++) a[i][j]=s[j-1];
	}
	n+=2, m+=2;
	dfs(0, 0, 0);
	c++;
	for(int i=0; i<n; i++){
		for(int j=0; j<m; j++){
			if(b[i][j]==-1 && a[i][j]=='x'){
				dfs2(i, j, c, cnt[c]);
				c++;
			}
		}
	}
	g.resize(c);
	for(int i=0; i<n; i++){
		for(int j=0; j<m; j++){
			if(j<m-1 && b[i][j]!=b[i][j+1]){
				g[b[i][j]].push_back(b[i][j+1]);
				g[b[i][j+1]].push_back(b[i][j]);
			}
			if(i<n-1 && b[i][j]!=b[i+1][j]){
				g[b[i][j]].push_back(b[i+1][j]);
				g[b[i+1][j]].push_back(b[i][j]);
			}
		}
	}
	for(int i=0; i<c; i++){
		sort(g[i].begin(), g[i].end());
		g[i].erase(unique(g[i].begin(), g[i].end()), g[i].end());
	}
	dfs3(0, -1);
	cout<<max(dp[0][0], dp[1][0])<<endl;
	return 0;
}
0