結果

問題 No.2884 Pieces on Squares
ユーザー nouka28nouka28
提出日時 2024-09-08 14:43:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 993 bytes
コンパイル時間 6,015 ms
コンパイル使用メモリ 312,888 KB
実行使用メモリ 199,688 KB
最終ジャッジ日時 2024-09-08 14:43:14
合計ジャッジ時間 11,539 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
174,284 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 129 ms
179,428 KB
testcase_04 AC 9 ms
6,940 KB
testcase_05 AC 41 ms
53,144 KB
testcase_06 AC 127 ms
116,412 KB
testcase_07 AC 89 ms
28,320 KB
testcase_08 AC 72 ms
7,948 KB
testcase_09 AC 139 ms
141,592 KB
testcase_10 AC 70 ms
65,996 KB
testcase_11 AC 228 ms
183,700 KB
testcase_12 AC 5 ms
8,524 KB
testcase_13 AC 5 ms
12,508 KB
testcase_14 AC 113 ms
176,900 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 52 ms
61,224 KB
testcase_18 AC 102 ms
122,252 KB
testcase_19 AC 11 ms
20,632 KB
testcase_20 AC 115 ms
164,176 KB
testcase_21 WA -
testcase_22 AC 228 ms
198,440 KB
testcase_23 AC 191 ms
199,464 KB
testcase_24 AC 219 ms
199,688 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 168 ms
199,164 KB
testcase_29 AC 168 ms
198,908 KB
testcase_30 AC 175 ms
199,516 KB
testcase_31 AC 140 ms
199,580 KB
testcase_32 AC 71 ms
18,156 KB
testcase_33 AC 67 ms
18,364 KB
testcase_34 AC 5 ms
6,940 KB
testcase_35 AC 9 ms
9,868 KB
testcase_36 AC 6 ms
6,940 KB
testcase_37 AC 3 ms
6,944 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 1 ms
6,940 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 2 ms
6,940 KB
testcase_45 AC 33 ms
16,124 KB
testcase_46 AC 6 ms
7,800 KB
testcase_47 AC 2 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(b)]=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]=i*h;
	}
	// cout<<cnt<<endl;
	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)]){
				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));
			}
		}
	}
	int ans=0;
	for(int j=0;j<=w;j++)ans=max(ans,dp[h][j]);
	cout<<ans<<endl;
}
0