結果

問題 No.241 出席番号(1)
ユーザー parukiparuki
提出日時 2016-08-05 00:14:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 2,017 bytes
コンパイル時間 1,778 ms
コンパイル使用メモリ 171,060 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-07 00:10:02
合計ジャッジ時間 4,536 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 RE -
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 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 WA -
testcase_15 WA -
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 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
5,248 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;
int N, A[50];
bool used[50], eUsed[50][50], reUsed[50][50];
struct E{
int to, cap, rev;
};
vector<E> G[50];
void add(int from, int to){
G[from].push_back(E{to,1,(int)G[to].size()});
G[to].push_back(E{from,0,(int)G[from].size() - 1});
}
int dfs(int v, int f){
if(v == 2*N+1) return f;
used[v] = 1;
for(auto &e : G[v]){
if(!used[e.to] && e.cap > 0){
int d = dfs(e.to, min(e.cap, f));
if(d > 0){
e.cap -= d;
G[e.to][e.rev].cap += d;
return d;
}
}
}
return 0;
}
int get(){
int f = 1, res = 0;
while(f){
MEM(used, 0);
f = dfs(2 * N, INT_MAX);
res += f;
}
return res;
}
int main(){
cin >> N;
rep(i, N){
cin >> A[i];
rep(j, N)if(j != A[i])
add(i, N+j);
add(2 * N, i);
add(N + i, 2 * N + 1);
}
int cnt = get();
if(cnt == N){
rep(i, N){
each(e, G[i]){
int j = e.to - N;
if(0 <= j && j < N && e.cap){
eUsed[i][j] = 1;
}
}
each(e, G[N+i]){
int j = e.to;
if(0 <= j && j < N && e.cap)
reUsed[j][i] = 1;
}
}
rep(i, N)rep(j, N){
if(reUsed[i][j] && !eUsed[i][j]){
cout << j << endl;
}
}
} else{
puts("-1");
}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0