結果
問題 | No.241 出席番号(1) |
ユーザー | yaoshimax |
提出日時 | 2016-04-13 00:34:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,681 bytes |
コンパイル時間 | 830 ms |
コンパイル使用メモリ | 70,912 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 00:19:49 |
合計ジャッジ時間 | 1,795 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 3 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 3 ms
5,376 KB |
testcase_30 | AC | 3 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <climits> #include <vector> #include <cstdio> #include <cstring> using namespace std; #define GRAPH_SIZE 2510 struct edge{ int to, cap, rev; }; vector<edge> graph[GRAPH_SIZE]; bool used[GRAPH_SIZE]; void addedge( int from, int to, int cap ){ //枝を追加する。逆向きには容量0の真逆な枝を追加しておく。 graph[from].push_back( (edge){to,cap,(int)graph[to].size()} ); graph[to].push_back( (edge){from,0, (int)graph[from].size()-1} ); return; } int dfs( int v, int t, int f ){ if( v==t ) return f; used[v]=true; for( int i = 0 ; i < (int)graph[v].size(); i++){ edge &e = graph[v][i]; if( !used[e.to] && e.cap > 0 ){ int d = dfs(e.to, t, min(f,e.cap) ); if( d > 0 ){ e.cap -= d; graph[e.to][e.rev].cap += d; return d; } } } return 0; } int max_flow( int s, int t ){ int flow = 0; while(true){ memset(used, 0 , sizeof(used) ); int f = dfs(s,t,INT_MAX/2); if( f == 0 ) return flow; flow += f; } } int main(){ int N; cin >> N; for( int i = 1 ; i <= N; i++ ){ addedge(0,i,1); addedge(N+i,2*N+1,1); } for( int i = 1 ; i <= N; i++ ){ int a; cin >> a; a++; for( int j = 1; j <= N ; j++ ){ if( a!=j ){ addedge(i, N+j,1); } } } if( max_flow(0,2*N+1) == N){ for( int i = 1; i<=N; i++ ){ for( int ei=0; ei < (int)graph[i].size(); ei++ ){ if( graph[i][ei].cap==0 ){ cout << graph[i][ei].to -1-N<<endl; } } } } else{ cout << -1 << endl; } return 0; }