結果

問題 No.472 平均順位
ユーザー pluto77pluto77
提出日時 2018-01-05 13:36:23
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,263 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-06-02 09:45:18
合計ジャッジ時間 7,498 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
75,520 KB
testcase_01 AC 86 ms
75,648 KB
testcase_02 AC 83 ms
75,392 KB
testcase_03 AC 82 ms
75,648 KB
testcase_04 AC 108 ms
78,080 KB
testcase_05 AC 81 ms
75,392 KB
testcase_06 AC 92 ms
77,696 KB
testcase_07 AC 113 ms
78,336 KB
testcase_08 AC 146 ms
79,488 KB
testcase_09 AC 179 ms
79,872 KB
testcase_10 AC 158 ms
79,744 KB
testcase_11 AC 238 ms
79,744 KB
testcase_12 AC 208 ms
79,744 KB
testcase_13 AC 386 ms
79,744 KB
testcase_14 AC 1,097 ms
79,872 KB
testcase_15 AC 412 ms
79,616 KB
testcase_16 AC 1,263 ms
80,000 KB
testcase_17 AC 948 ms
79,104 KB
testcase_18 AC 196 ms
79,616 KB
testcase_19 AC 260 ms
79,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_472

INF=float('inf')
n,p=map(int,raw_input().split())
dp = [INF for i in xrange(p+4)]
for i in xrange(n):
 a,b,c=map(int,raw_input().split())
 if i == 0:
  dp[0]=a
  dp[1]=b
  dp[2]=c
  dp[3]=1 
  continue
 for j in xrange(p,-1,-1):
  dp[j]=dp[j]+a
  if j>0: dp[j]=min(dp[j],dp[j-1]+b)
  if j>1: dp[j]=min(dp[j],dp[j-2]+c)
  if j>2: dp[j]=min(dp[j],dp[j-3]+1)

print 1.0*dp[p]/n
0