結果

問題 No.1669 パズル作成
ユーザー 沙耶花沙耶花
提出日時 2021-02-27 14:29:41
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 766 bytes
コンパイル時間 4,101 ms
コンパイル使用メモリ 254,592 KB
最終ジャッジ日時 2025-01-19 07:53:44
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
20,004 KB
testcase_01 AC 40 ms
25,728 KB
testcase_02 AC 41 ms
19,876 KB
testcase_03 AC 709 ms
26,368 KB
testcase_04 AC 306 ms
20,004 KB
testcase_05 AC 815 ms
25,984 KB
testcase_06 AC 49 ms
26,240 KB
testcase_07 TLE -
testcase_08 AC 56 ms
26,152 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 57 ms
26,536 KB
testcase_13 AC 52 ms
26,540 KB
testcase_14 AC 54 ms
20,176 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
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 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 45 ms
13,224 KB
testcase_31 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:20:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |                 scanf("%d %d",&r,&c);
      |                 ~~~~~^~~~~~~~~~~~~~~

ソースコード

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<25000001> B;
	B[0] = 1;
	
	rep(i,x.size()){
		B |= B << (x[i]*5000 + y[i]);
	}
	
	rep(i,B.size()){
		int x = i%5000,y = i/5000;
		if(B[i]){
			ans = min(ans,x*y + (N-x)*(N-y) - M);
		}
	}
	
	
	

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