結果

問題 No.177 制作進行の宮森あおいです!
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-16 15:24:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-11-16 15:25:02
合計ジャッジ時間 3,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 50 ms
60,800 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 71 ms
66,944 KB
testcase_04 AC 62 ms
65,024 KB
testcase_05 AC 83 ms
70,272 KB
testcase_06 AC 130 ms
76,416 KB
testcase_07 AC 51 ms
59,776 KB
testcase_08 AC 77 ms
68,480 KB
testcase_09 AC 231 ms
76,416 KB
testcase_10 AC 254 ms
76,416 KB
testcase_11 AC 215 ms
76,672 KB
testcase_12 AC 182 ms
76,672 KB
testcase_13 AC 41 ms
52,608 KB
testcase_14 AC 42 ms
52,480 KB
testcase_15 AC 41 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

W=int(input())
n=int(input())
c1=list(map(int,input().split()))
m=int(input())
c2=list(map(int,input().split()))
S=n+m
T=S+1
X=10**10
e=[[0 for j in range(n+m+2)] for i in range(n+m+2)]
for i in range(n):
  e[S][i]=c1[i]
for i in range(m):
  e[n+i][T]=c2[i]
for i in range(m):
  q,*x,=map(int,input().split())
  for j in range(n):
    if j+1 not in x:
      e[j][n+i]=X
w=0
while 1:
  q=[S]
  v=[0]*(n+m+2)
  g=[0]*(n+m+2)
  f=0
  while len(q)>0:
    s=q[-1]
    v[s]=1
    if s==T:
      f=1
      c=min(e[q[i]][q[i+1]] for i in range(len(q)-1))
      w+=c
      for i in range(len(q)-1):
        e[q[i]][q[i+1]]-=c
        e[q[i+1]][q[i]]+=c
      break
    while g[s]<n+m+2:
      t=g[s]
      if v[t]==0 and e[s][t]>0:
        break
      g[s]+=1
    if g[s]<n+m+2:
      q+=[t]
    else:
      q.pop()
  if f==0:
    break
print(["BANSAKUTSUKITA","SHIROBAKO"][w>=W])
0