結果
問題 | No.1669 パズル作成 |
ユーザー | tko919 |
提出日時 | 2021-10-02 16:00:50 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,760 bytes |
コンパイル時間 | 2,563 ms |
コンパイル使用メモリ | 217,404 KB |
実行使用メモリ | 104,916 KB |
最終ジャッジ日時 | 2024-07-20 10:34:22 |
合計ジャッジ時間 | 30,562 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 9 ms
11,884 KB |
testcase_04 | AC | 7 ms
11,664 KB |
testcase_05 | AC | 4 ms
11,768 KB |
testcase_06 | AC | 40 ms
11,760 KB |
testcase_07 | AC | 116 ms
101,728 KB |
testcase_08 | AC | 175 ms
102,916 KB |
testcase_09 | AC | 1,125 ms
104,728 KB |
testcase_10 | AC | 1,716 ms
104,684 KB |
testcase_11 | AC | 1,926 ms
104,780 KB |
testcase_12 | AC | 167 ms
102,132 KB |
testcase_13 | AC | 170 ms
102,384 KB |
testcase_14 | AC | 169 ms
101,940 KB |
testcase_15 | AC | 1,987 ms
104,784 KB |
testcase_16 | AC | 1,111 ms
104,368 KB |
testcase_17 | AC | 455 ms
104,816 KB |
testcase_18 | AC | 1,013 ms
104,540 KB |
testcase_19 | AC | 1,141 ms
104,612 KB |
testcase_20 | AC | 1,707 ms
104,708 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 1,968 ms
104,700 KB |
testcase_23 | AC | 1,778 ms
104,752 KB |
testcase_24 | AC | 1,386 ms
104,696 KB |
testcase_25 | AC | 1,067 ms
104,548 KB |
testcase_26 | AC | 458 ms
104,664 KB |
testcase_27 | AC | 1,477 ms
104,680 KB |
testcase_28 | AC | 1,825 ms
104,776 KB |
testcase_29 | AC | 626 ms
104,644 KB |
testcase_30 | AC | 146 ms
101,672 KB |
testcase_31 | AC | 147 ms
101,608 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define ALL(v) (v).begin(),(v).end() using ll=long long int; const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12; template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;} template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} struct UnionFind{ vector<int> par; int n; UnionFind(){} UnionFind(int _n):par(_n,-1),n(_n){} int root(int x){return par[x]<0?x:par[x]=root(par[x]);} bool same(int x,int y){return root(x)==root(y);} int size(int x){return -par[root(x)];} bool unite(int x,int y){ x=root(x),y=root(y); if(x==y)return false; if(size(x)>size(y))swap(x,y); par[y]+=par[x]; par[x]=y; n--; return true; } }; bitset<5010> dp[5010]; int rui[5010][5010]; int main(){ int n,m; cin>>n>>m; UnionFind uni(n*2); rep(i,0,m){ int x,y; cin>>x>>y; x--; y--; uni.unite(x,y+n); } using P=pair<int,int>; map<int,P> cnt; int X=0,Y=0; rep(i,0,n){ if(uni.size(i)==1)X++; else cnt[uni.root(i)].first++; } rep(i,n,n*2){ if(uni.size(i)==1)Y++; else cnt[uni.root(i)].second++; } dp[0][0]=1; for(auto& [t,p]:cnt){ auto [a,b]=p; for(int i=n-a;i>=0;i--)dp[i+a]|=dp[i]<<b; } rep(a,0,n+1)rep(b,0,n+1)if(dp[a][b]){ rui[a][b]++; rui[a+X+1][b]--; rui[a][b+Y+1]--; rui[a+X+1][b+Y+1]++; } rep(i,0,n+1)rep(j,0,n+1)rui[i+1][j]+=rui[i][j]; rep(i,0,n+1)rep(j,0,n+1)rui[i][j+1]+=rui[i][j]; int res=inf; rep(a,0,n+1)rep(b,0,n+1)if(rui[a][b]){ chmin(res,a*b+(n-a)*(n-b)-m); } cout<<res<<'\n'; return 0; }