結果
問題 | No.1669 パズル作成 |
ユーザー | 沙耶花 |
提出日時 | 2021-02-28 13:41:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 766 bytes |
コンパイル時間 | 4,661 ms |
コンパイル使用メモリ | 265,160 KB |
実行使用メモリ | 15,552 KB |
最終ジャッジ日時 | 2024-05-09 00:31:05 |
合計ジャッジ時間 | 9,395 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
15,088 KB |
testcase_01 | AC | 21 ms
7,988 KB |
testcase_02 | AC | 20 ms
8,144 KB |
testcase_03 | AC | 355 ms
8,152 KB |
testcase_04 | AC | 157 ms
8,192 KB |
testcase_05 | AC | 424 ms
8,072 KB |
testcase_06 | AC | 35 ms
8,152 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
#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<12500001> 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; }