結果
問題 | No.241 出席番号(1) |
ユーザー | beet |
提出日時 | 2018-11-15 20:12:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,560 bytes |
コンパイル時間 | 2,073 ms |
コンパイル使用メモリ | 210,760 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-30 22:24:01 |
合計ジャッジ時間 | 3,241 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 1 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 1 ms
5,248 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} struct BiMatch{ int L,R; vector<vector<int> > G; vector<int> match,level; BiMatch(){} BiMatch(int L,int R):L(L),R(R),G(L+R),match(L+R,-1),level(L){} void add_edge(int u,int v){ G[u].push_back(v+L); G[v+L].push_back(u); } bool bfs(){ queue<int> q; for(int i=0;i<L;i++){ level[i]=-1; if(match[i]<0){ level[i]=0; q.emplace(i); } } while(!q.empty()){ int v=q.front();q.pop(); for(int u:G[v]){ int w=match[u]; if(w<0) return true; if(level[w]<0){ level[w]=level[v]+1; q.emplace(w); } } } return false; } bool dfs(int v){ for(int u:G[v]){ int w=match[u]; if(w<0||(level[w]>level[v]&&dfs(w))){ match[v]=u; match[u]=v; return true; } } return false; } int build(){ int res=0; while(bfs()) for(int i=0;i<L;i++) if(match[i]<0&&dfs(i)) res++; return res; } }; //INSERT ABOVE HERE signed main(){ int n; cin>>n; BiMatch bm(n,n); for(int i=0;i<n;i++){ int a; cin>>a; for(int j=0;j<n;j++) if(j!=a) bm.add_edge(i,j); } int k=bm.build(); if(k!=n){ cout<<-1<<endl; return 0; } for(int i=0;i<n;i++) cout<<bm.match[i]-n<<endl; return 0; }