結果

問題 No.1669 パズル作成
ユーザー 沙耶花沙耶花
提出日時 2021-02-27 14:25:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 1,249 bytes
コンパイル時間 4,715 ms
コンパイル使用メモリ 264,608 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 00:31:24
合計ジャッジ時間 8,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 17 ms
5,376 KB
testcase_07 AC 254 ms
5,376 KB
testcase_08 AC 20 ms
5,376 KB
testcase_09 AC 227 ms
5,376 KB
testcase_10 AC 126 ms
5,376 KB
testcase_11 AC 181 ms
5,376 KB
testcase_12 AC 20 ms
5,376 KB
testcase_13 AC 21 ms
5,376 KB
testcase_14 AC 21 ms
5,376 KB
testcase_15 AC 149 ms
5,376 KB
testcase_16 AC 217 ms
5,376 KB
testcase_17 AC 36 ms
5,376 KB
testcase_18 AC 233 ms
5,376 KB
testcase_19 AC 227 ms
5,376 KB
testcase_20 AC 200 ms
5,376 KB
testcase_21 AC 175 ms
5,376 KB
testcase_22 AC 150 ms
5,376 KB
testcase_23 AC 125 ms
5,376 KB
testcase_24 AC 106 ms
5,376 KB
testcase_25 AC 83 ms
5,376 KB
testcase_26 AC 35 ms
5,376 KB
testcase_27 AC 213 ms
5,376 KB
testcase_28 AC 187 ms
5,376 KB
testcase_29 AC 45 ms
5,376 KB
testcase_30 AC 11 ms
5,376 KB
testcase_31 AC 12 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000



int main(){
	
	int N,M;
	cin>>N>>M;
	
	dsu D(2*N);
	rep(i,M){
		int r,c;
		scanf("%d %d",&r,&c);
		r--;c--;
		
		D.merge(r,N+c);
	}
	
	auto g = D.groups();
	vector<int> x(g.size(),0),y(g.size(),0);
	
	rep(i,g.size()){
		rep(j,g[i].size()){
			if(g[i][j]<N)x[i]++;
			else y[i]++;
		}
	}
	
	int ans = Inf;
	
	{
		vector<int> dp(N+1,Inf);
		dp[0] = 0;
		rep(i,x.size()){
			vector<int> ndp(N+1,Inf);
			rep(j,N+1){
				if(dp[j]==Inf)continue;
				ndp[j] = min(ndp[j],dp[j]);
				ndp[j+x[i]] = min(ndp[j+x[i]],dp[j] + y[i]);
			}
			swap(dp,ndp);
		}
		rep(i,N+1){
			if(dp[i]==Inf)continue;
			ans = min(ans,i*dp[i] + (N-i) * (N-dp[i]) - M);
		}
	}
	
	{
		vector<int> dp(N+1,-Inf);
		dp[0] = 0;
		rep(i,x.size()){
			vector<int> ndp(N+1,-Inf);
			rep(j,N+1){
				if(dp[j]==-Inf)continue;
				ndp[j] = max(ndp[j],dp[j]);
				ndp[j+x[i]] = max(ndp[j+x[i]],dp[j] + y[i]);
			}
			swap(dp,ndp);
		}
		rep(i,N+1){
			if(dp[i]==-Inf)continue;
			ans = min(ans,i*dp[i] + (N-i) * (N-dp[i]) - M);
		}
	}
	
	cout<<ans<<endl;
	
	
    return 0;
}
0