結果

問題 No.241 出席番号(1)
ユーザー roarisroaris
提出日時 2019-12-06 11:24:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 1,210 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 71,808 KB
最終ジャッジ日時 2024-12-23 05:04:08
合計ジャッジ時間 3,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,888 KB
testcase_01 AC 50 ms
60,544 KB
testcase_02 AC 54 ms
62,976 KB
testcase_03 AC 44 ms
53,760 KB
testcase_04 AC 58 ms
64,640 KB
testcase_05 AC 48 ms
53,888 KB
testcase_06 AC 43 ms
53,888 KB
testcase_07 AC 44 ms
53,888 KB
testcase_08 AC 46 ms
54,016 KB
testcase_09 AC 43 ms
53,888 KB
testcase_10 AC 45 ms
53,632 KB
testcase_11 AC 44 ms
53,760 KB
testcase_12 AC 44 ms
54,272 KB
testcase_13 AC 54 ms
61,184 KB
testcase_14 AC 66 ms
68,736 KB
testcase_15 AC 62 ms
67,328 KB
testcase_16 AC 44 ms
53,760 KB
testcase_17 AC 46 ms
53,632 KB
testcase_18 AC 44 ms
54,144 KB
testcase_19 AC 43 ms
54,016 KB
testcase_20 AC 44 ms
53,504 KB
testcase_21 AC 48 ms
54,016 KB
testcase_22 AC 45 ms
54,272 KB
testcase_23 AC 64 ms
67,328 KB
testcase_24 AC 67 ms
69,376 KB
testcase_25 AC 70 ms
71,808 KB
testcase_26 AC 66 ms
69,760 KB
testcase_27 AC 65 ms
68,864 KB
testcase_28 AC 62 ms
68,352 KB
testcase_29 AC 69 ms
70,400 KB
testcase_30 AC 68 ms
69,760 KB
testcase_31 AC 68 ms
69,632 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