結果
問題 | No.1669 パズル作成 |
ユーザー | ぷら |
提出日時 | 2021-09-19 21:20:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,246 bytes |
コンパイル時間 | 2,428 ms |
コンパイル使用メモリ | 216,564 KB |
実行使用メモリ | 356,480 KB |
最終ジャッジ日時 | 2024-07-02 01:48:18 |
合計ジャッジ時間 | 19,650 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | TLE | - |
testcase_10 | RE | - |
testcase_11 | TLE | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | TLE | - |
testcase_17 | RE | - |
testcase_18 | TLE | - |
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 <bits/stdc++.h> using namespace std; struct UnionFind { vector<int> par; vector<int> size; UnionFind(int n) { par.resize(n); size.resize(n,1); for(int i = 0; i < n; i++) { par[i] = i; } } int find(int x) { if(par[x] == x) { return x; } return par[x] = find(par[x]); } bool same(int x, int y) { return find(x) == find(y); } int consize(int x) { return size[find(x)]; } void unite(int x, int y) { x = find(x); y = find(y); if(x == y) { return; } if(size[x] < size[y]) { par[x] = y; size[y] += size[x]; } else { par[y] = x; size[x] += size[y]; } } }; int inf = 1001001001; int main() { int N,M; cin >> N >> M; if(M == 0) { cout << 0 << endl; return 0; } UnionFind uf(2*N); for(int i = 0; i < M; i++) { int r,c; cin >> r >> c; r--; c--; uf.unite(r,N+c); } map<int,pair<int,int>>tmp; for(int i = 0; i < 2*N; i++) { if(i < N) { tmp[uf.find(i)].first++; } else { tmp[uf.find(i)].second++; } } int n = tmp.size(); vector<vector<int>>dp1(n+1,vector<int>(N+1,-inf)),dp2(n+1,vector<int>(N+1,inf)); dp1[0][0] = 0; dp2[0][0] = 0; int k = 0; for(auto x:tmp) { for(int j = 0; j <= N; j++) { dp1[k+1][j] = max(dp1[k+1][j],dp1[k][j]); dp2[k+1][j] = min(dp2[k+1][j],dp2[k][j]); if(j+x.second.first <= N) { dp1[k+1][j+x.first] = max(dp1[k+1][j+x.first],dp1[k][j]+x.second.second); dp2[k+1][j+x.first] = min(dp2[k+1][j+x.first],dp2[k][j]+x.second.second); } } k++; } int ans = inf; for(int i = 0; i <= N; i++) { if(dp1[n][i] != -inf) { int a = i,b = dp1[n][i]; ans = min(ans,a*b+(N-a)*(N-b)-M); } if(dp2[n][i] != inf) { int a = i,b = dp2[n][i]; ans = min(ans,a*b+(N-a)*(N-b)-M); } } cout << ans << endl; }