結果

問題 No.1669 パズル作成
ユーザー 沙耶花沙耶花
提出日時 2021-02-28 13:45:45
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 766 bytes
コンパイル時間 4,312 ms
コンパイル使用メモリ 265,692 KB
実行使用メモリ 17,476 KB
最終ジャッジ日時 2024-12-15 08:37:15
合計ジャッジ時間 57,014 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
15,220 KB
testcase_01 AC 23 ms
15,192 KB
testcase_02 AC 22 ms
15,220 KB
testcase_03 AC 353 ms
15,352 KB
testcase_04 AC 155 ms
15,096 KB
testcase_05 AC 415 ms
16,688 KB
testcase_06 AC 37 ms
15,220 KB
testcase_07 TLE -
testcase_08 AC 38 ms
15,512 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 40 ms
15,640 KB
testcase_13 AC 37 ms
15,524 KB
testcase_14 AC 41 ms
15,516 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,099 ms
15,428 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,057 ms
8,484 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 1,342 ms
8,628 KB
testcase_30 AC 30 ms
8,572 KB
testcase_31 AC 31 ms
15,636 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;
	
	bitset<13000001> B;
	B[0] = 1;
	
	rep(i,x.size()){
		B |= B << (x[i]*5001 + y[i]);
	}
	
	rep(i,B.size()){
		int x = i%5001,y = i/5001;
		if(B[i]){
			ans = min(ans,x*y + (N-x)*(N-y) - M);
		}
	}
	
	
	

	
	cout<<ans<<endl;
	
	
    return 0;
}
0