結果

問題 No.2884 Pieces on Squares
ユーザー nouka28nouka28
提出日時 2024-09-08 14:58:15
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,175 bytes
コンパイル時間 5,334 ms
コンパイル使用メモリ 312,952 KB
実行使用メモリ 199,588 KB
最終ジャッジ日時 2024-09-08 14:58:28
合計ジャッジ時間 10,942 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
126,852 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 155 ms
165,152 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 36 ms
11,136 KB
testcase_06 AC 127 ms
51,840 KB
testcase_07 AC 103 ms
13,184 KB
testcase_08 AC 70 ms
5,504 KB
testcase_09 AC 147 ms
140,760 KB
testcase_10 AC 72 ms
65,612 KB
testcase_11 AC 267 ms
182,872 KB
testcase_12 AC 5 ms
8,792 KB
testcase_13 AC 5 ms
11,960 KB
testcase_14 AC 133 ms
175,536 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 55 ms
62,020 KB
testcase_18 AC 112 ms
122,296 KB
testcase_19 AC 11 ms
20,904 KB
testcase_20 AC 123 ms
157,976 KB
testcase_21 WA -
testcase_22 AC 262 ms
197,572 KB
testcase_23 AC 213 ms
198,924 KB
testcase_24 AC 238 ms
199,488 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 183 ms
199,116 KB
testcase_29 AC 185 ms
198,896 KB
testcase_30 AC 194 ms
199,480 KB
testcase_31 AC 148 ms
199,504 KB
testcase_32 AC 71 ms
18,224 KB
testcase_33 AC 65 ms
18,316 KB
testcase_34 AC 5 ms
7,652 KB
testcase_35 AC 8 ms
7,872 KB
testcase_36 AC 5 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 1 ms
6,940 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 2 ms
6,944 KB
testcase_45 AC 32 ms
16,212 KB
testcase_46 AC 6 ms
7,888 KB
testcase_47 AC 1 ms
6,944 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#include<atcoder/all>
using namespace atcoder;

#define int long long

int dp[5009][5009];

signed main(){
	int h,w,n;cin>>h>>w>>n;
	dsu d(h+w);
	vector<int> h1(h+w,-1),w1(h+w,-1);
	for(int i=0;i<n;i++){
		int a,b;cin>>a>>b;
		a--;b--;
		d.merge(a,b+h);
		h1[d.leader(a)]=a;
		w1[d.leader(a)]=b;
	}
	vector<int> hs(h+w),ws(h+w);
	for(int i=0;i<h;i++){
		hs[d.leader(i)]++;
	}
	for(int i=0;i<w;i++){
		ws[d.leader(i+h)]++;
	}
	for(int i=0;i<=h;i++){
		for(int j=0;j<=w;j++)dp[i][j]=-1e18;
	}
	int cnt=0;for(int i=0;i<w;i++)if(d.size(i+h)==1)cnt++;
	for(int i=0;i<=cnt;i++){
		dp[0][i]=h*i;
	}
	for(int i=0;i<h;i++){
		for(int j=0;j<=w;j++){
			dp[i+1][j]=max(dp[i+1][j],dp[i][j]);
			if(i==h1[d.leader(i)]&&d.size(i)>1){
				int li=d.leader(i);
				int z1=hs[li];
				int z2=ws[li];
				dp[i+1][j+z2]=max(dp[i+1][j+z2],dp[i][j]+z1*w+z2*h-2*z1*(j+z2));
			}
		}
	}
	// for(int i=0;i<h;i++){
	// 	for(int j=0;j<=w;j++){
	// 		dp[i+1][j]=max(dp[i+1][j],dp[i][j]);
	// 		if(d.size(i)==1){
	// 			dp[i+1][j]=max(dp[i+1][j],dp[i][j]+w-j);
	// 		}
	// 	}
	// }
	int ans=0;
	for(int j=0;j<=w;j++)ans=max(ans,dp[h][j]);
	cout<<ans<<endl;
}
0