結果

問題 No.2884 Pieces on Squares
ユーザー nouka28nouka28
提出日時 2024-09-08 14:44:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 993 bytes
コンパイル時間 5,368 ms
コンパイル使用メモリ 313,532 KB
実行使用メモリ 199,708 KB
最終ジャッジ日時 2024-09-08 14:44:12
合計ジャッジ時間 10,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
137,244 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 127 ms
166,044 KB
testcase_04 AC 9 ms
6,940 KB
testcase_05 AC 41 ms
54,896 KB
testcase_06 AC 126 ms
115,280 KB
testcase_07 AC 89 ms
26,984 KB
testcase_08 AC 73 ms
6,940 KB
testcase_09 AC 137 ms
140,832 KB
testcase_10 AC 70 ms
65,864 KB
testcase_11 AC 227 ms
182,852 KB
testcase_12 AC 5 ms
8,068 KB
testcase_13 AC 6 ms
12,024 KB
testcase_14 AC 114 ms
175,468 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 52 ms
61,740 KB
testcase_18 AC 102 ms
123,244 KB
testcase_19 AC 11 ms
20,352 KB
testcase_20 AC 113 ms
163,892 KB
testcase_21 WA -
testcase_22 AC 225 ms
198,204 KB
testcase_23 AC 190 ms
198,984 KB
testcase_24 AC 219 ms
199,488 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 201 ms
199,060 KB
testcase_29 AC 170 ms
198,996 KB
testcase_30 AC 176 ms
199,548 KB
testcase_31 AC 138 ms
199,356 KB
testcase_32 AC 70 ms
20,056 KB
testcase_33 AC 65 ms
18,252 KB
testcase_34 AC 5 ms
7,544 KB
testcase_35 AC 8 ms
9,740 KB
testcase_36 AC 6 ms
6,940 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 2 ms
6,940 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,200 KB
testcase_46 AC 6 ms
7,656 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 2 ms
6,940 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]=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