結果

問題 No.241 出席番号(1)
ユーザー roarisroaris
提出日時 2019-12-06 11:24:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 1,210 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 71,936 KB
最終ジャッジ日時 2024-06-02 09:16:30
合計ジャッジ時間 3,036 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,272 KB
testcase_01 AC 46 ms
60,416 KB
testcase_02 AC 50 ms
62,976 KB
testcase_03 AC 40 ms
53,760 KB
testcase_04 AC 53 ms
64,768 KB
testcase_05 AC 40 ms
53,760 KB
testcase_06 AC 40 ms
54,016 KB
testcase_07 AC 39 ms
53,888 KB
testcase_08 AC 40 ms
54,400 KB
testcase_09 AC 41 ms
53,888 KB
testcase_10 AC 40 ms
53,760 KB
testcase_11 AC 40 ms
54,392 KB
testcase_12 AC 39 ms
53,888 KB
testcase_13 AC 46 ms
61,184 KB
testcase_14 AC 62 ms
69,120 KB
testcase_15 AC 56 ms
67,328 KB
testcase_16 AC 40 ms
53,760 KB
testcase_17 AC 39 ms
53,888 KB
testcase_18 AC 39 ms
53,888 KB
testcase_19 AC 40 ms
53,888 KB
testcase_20 AC 41 ms
53,760 KB
testcase_21 AC 40 ms
53,760 KB
testcase_22 AC 41 ms
54,016 KB
testcase_23 AC 60 ms
67,072 KB
testcase_24 AC 63 ms
69,120 KB
testcase_25 AC 65 ms
71,936 KB
testcase_26 AC 60 ms
70,016 KB
testcase_27 AC 59 ms
68,608 KB
testcase_28 AC 60 ms
67,968 KB
testcase_29 AC 63 ms
70,144 KB
testcase_30 AC 61 ms
69,248 KB
testcase_31 AC 61 ms
69,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
from collections import defaultdict

def dfs(v, t, f, used):
    if v==t:
        return f
    
    used[v] = True
    
    for nv, cap in edges[v].items():
        if not used[nv] and cap>0:
            d = dfs(nv, t, min(f, cap), used)
            
            if d>0:
                edges[v][nv] -= d
                edges[nv][v] += d
                
                return d
    
    return 0

def max_flow(s, t):
    flow = 0
    
    while True:
        used = [False]*(2*N+2)
        f = dfs(s, t, 10**18, used)
        
        if f==0:
            return flow
        
        flow += f
        
N = int(input())
A = [int(input()) for _ in range(N)]
edges = defaultdict(dict)

for i in range(1, N+1):
    edges[0][i] = 1
    edges[i][0] = 0

for i in range(1, N+1):
    for j in range(N+1, 2*N+1):
        if j!=A[i-1]+N+1:
            edges[i][j] = 1
            edges[j][i] = 0

for i in range(N+1, 2*N+1):
    edges[i][2*N+1] = 1
    edges[2*N+1][i] = 0

f = max_flow(0, 2*N+1)

if f<N:
    print(-1)
    exit()

for i in range(1, N+1):
    for j in range(N+1, 2*N+1):
        if j in edges[i] and edges[i][j]==0:
            print(j-N-1)
            break
0