結果

問題 No.1708 Quality of Contest
ユーザー YamaguchiT6YamaguchiT6
提出日時 2021-11-04 23:44:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 781 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 818,048 KB
最終ジャッジ日時 2024-10-15 06:18:02
合計ジャッジ時間 4,758 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 30 ms
11,136 KB
testcase_02 MLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import collections
import math
def main():
  N,M,X=map(int,input().split( ))
  A=list(range(N))
  B=list(range(N))
  for num in range(N):
    A[num],B[num]=map(int,input().split( ))
  K=int(input())
  S=list(range(N))
  T=list(range(N))
  C= [int(i) for i in input().split()]
  Q=list(itertools.permutations(T))
  F=list(range(math.factorial(N)))
  U=list(range(K))
  E=0
  for j in range(K):
    if C[j]==0:
      U[j]=0
    else:
     for num in range(math.factorial(N)):
      for p in range(N):
        T[p] = B[Q[num][p]]
      for NUM in range(C[j]):
        E=E + A[Q[num][NUM]]
      F[num]=E + len(collections.Counter(T[0:C[j]])) * X
      E=0
      U[j]= max(F)
  h=0
  for w in range(K):
    h=h + U[w]
  print(h)  
if __name__ == '__main__':
  main()  
0