結果

問題 No.9 モンスターのレベル上げ
ユーザー 6soukiti296soukiti29
提出日時 2017-07-20 20:26:25
言語 Nim
(1.6.4)
結果
AC  
実行時間 698 ms / 5,000 ms
コード長 1,992 bytes
コンパイル時間 3,368 ms
使用メモリ 3,424 KB
最終ジャッジ日時 2023-01-30 12:27:25
合計ジャッジ時間 10,531 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 2 ms
3,108 KB
testcase_01 AC 2 ms
3,072 KB
testcase_02 AC 698 ms
3,276 KB
testcase_03 AC 538 ms
3,408 KB
testcase_04 AC 287 ms
3,192 KB
testcase_05 AC 189 ms
3,220 KB
testcase_06 AC 64 ms
3,264 KB
testcase_07 AC 3 ms
3,092 KB
testcase_08 AC 87 ms
3,316 KB
testcase_09 AC 673 ms
3,424 KB
testcase_10 AC 2 ms
3,116 KB
testcase_11 AC 625 ms
3,276 KB
testcase_12 AC 593 ms
3,316 KB
testcase_13 AC 304 ms
3,308 KB
testcase_14 AC 674 ms
3,264 KB
testcase_15 AC 613 ms
3,276 KB
testcase_16 AC 11 ms
3,128 KB
testcase_17 AC 392 ms
3,352 KB
testcase_18 AC 330 ms
3,340 KB
testcase_19 AC 7 ms
3,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(21, 25) Warning: Number of spaces around '<=' is not consistent [Spacing]
/home/judge/data/code/Main.nim(1, 26) Warning: imported and not used: 'math' [UnusedImport]

ソースコード

diff #

import sequtils,strutils,math
type
    priorityQue[I:static[int];T:tuple] = array[I + 1,T]
    item = tuple[cost: int,ID : int]
proc push[T](A:var priorityQue; b: T;)=
    const key = 0
    A[0][0] += 1
    A[A[0][0]] = b # A[0][0]はsize、最大のIndex
    var index = A[0][0]
    while index > 1 and A[index][key] > A[index div 2][key]:
        (A[index],A[index div 2]) = (A[index div 2],A[index])
        index = index div 2
proc pop(A: var priorityQue):item = #戻り値を書き換える
    const key = 0
    result = A[1]
    A[1] = A[A[0][0]]
    A[A[0][0]] = (0,0)
    A[0][0] -= 1
    var index = 1
    while index * 2 <= A[0][0]:
        if index * 2 + 1<= A[0][0]:
            if A[index][key] < A[index * 2][key] and A[index * 2 + 1][key] <= A[index * 2][key]:
                (A[index],A[index * 2]) = (A[index * 2],A[index])
                index = index * 2
            elif A[index][key] < A[index * 2 + 1][key]:
                (A[index],A[index * 2 + 1]) = (A[index * 2 + 1],A[index])
                index = index * 2 + 1
            else:
                break
        elif index * 2 <= A[0][0]:
            if A[index][key] < A[index * 2][key]:
                (A[index],A[index * 2]) = (A[index * 2],A[index])
            break
        else:
            break

proc size(A : priorityQue):int=
    return A[0][0]

var
    N = stdin.readline.parseInt
    A = stdin.readline.split.map(parseInt)
    B = stdin.readline.split.map(parseInt)
    pQueA : priorityQue[1500,item]
    p : int
    ans,cnt : int
    monster : item
for n in 0..<N:
    pQueA.push((- A[n] * 10000 ,n))
ans = high(int)
for n in 0..<N:
    var pQueB = pQueA
    for i in 0..<N:
        p = (n + i) mod N
        monster = pQueB.pop
        monster.cost -= 1
        monster.cost -= B[p] div 2 * 10000
        pQueB.push(monster)
    cnt = 0
    while pQueB.size > 0:
        monster = pQueB.pop
        cnt = max(cnt, (-1 * monster.cost) mod 10000)
    ans = min(ans,cnt)
echo ans
        
    




0