結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー gmm_teagmm_tea
提出日時 2021-01-22 21:54:49
言語 Ruby
(3.3.0)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-06-08 14:30:49
合計ジャッジ時間 15,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 AC 83 ms
12,160 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 85 ms
12,288 KB
testcase_04 AC 85 ms
12,032 KB
testcase_05 AC 83 ms
12,288 KB
testcase_06 AC 87 ms
12,032 KB
testcase_07 AC 88 ms
12,160 KB
testcase_08 AC 86 ms
12,160 KB
testcase_09 AC 83 ms
12,288 KB
testcase_10 AC 84 ms
12,288 KB
testcase_11 AC 82 ms
12,032 KB
testcase_12 AC 84 ms
12,160 KB
testcase_13 AC 85 ms
12,160 KB
testcase_14 AC 85 ms
12,288 KB
testcase_15 AC 87 ms
12,160 KB
testcase_16 AC 85 ms
12,288 KB
testcase_17 AC 87 ms
12,288 KB
testcase_18 AC 83 ms
12,160 KB
testcase_19 AC 85 ms
12,288 KB
testcase_20 AC 88 ms
12,160 KB
testcase_21 AC 84 ms
12,288 KB
testcase_22 AC 86 ms
12,160 KB
testcase_23 AC 131 ms
12,416 KB
testcase_24 AC 182 ms
12,544 KB
testcase_25 AC 538 ms
16,640 KB
testcase_26 AC 95 ms
12,160 KB
testcase_27 AC 87 ms
12,032 KB
testcase_28 AC 525 ms
16,640 KB
testcase_29 AC 106 ms
12,032 KB
testcase_30 AC 133 ms
12,416 KB
testcase_31 AC 131 ms
12,288 KB
testcase_32 AC 94 ms
12,032 KB
testcase_33 AC 555 ms
16,512 KB
testcase_34 AC 529 ms
16,384 KB
testcase_35 AC 544 ms
16,384 KB
testcase_36 AC 529 ms
16,640 KB
testcase_37 AC 532 ms
16,640 KB
testcase_38 AC 536 ms
16,512 KB
testcase_39 AC 532 ms
16,384 KB
testcase_40 AC 528 ms
16,640 KB
testcase_41 AC 526 ms
16,512 KB
testcase_42 AC 528 ms
16,640 KB
testcase_43 AC 83 ms
12,288 KB
testcase_44 AC 560 ms
16,384 KB
testcase_45 AC 86 ms
12,288 KB
testcase_46 AC 524 ms
16,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
a=gets.split.map(&:to_i)
b=[]
n.times do
  b << gets.split.map(&:to_i)
end
# n=18
# a=[1000000000]*n
# b=[]
# n.times do
#   b << [1000000000]*n
# end
d=[0,a[0]]
dk=2
dkk=1
dki=0
m=a[0]
mi=1
2.upto(2**n-1) do |di|
  if di==dk
    dki+=1
    dkk=dk
    dk*=2
  end
  # dki は今の2進数桁数 - 1
  # dk は次に位が上がるとき
  c=a[dki]+d[di-dkk]
  (dki-1).downto(0) do |i|
    if di[i]==1
      c+=b[dki][i]
    end
  end
  d << c
#  p [di.to_s(2),c]
  if m<c
    m=c
    mi=di
  end
end
puts m
l=[]
n.times do |i|
  if mi[i]==1
    l << i+1
  end
end
puts l.join(" ")
0