結果

問題 No.1373 Directed Operations
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-05 21:56:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 97,708 KB
最終ジャッジ日時 2024-07-02 12:27:18
合計ジャッジ時間 5,185 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,736 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 112 ms
96,384 KB
testcase_03 AC 88 ms
96,512 KB
testcase_04 AC 92 ms
97,024 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 313 ms
97,708 KB
testcase_07 AC 55 ms
67,456 KB
testcase_08 AC 78 ms
76,416 KB
testcase_09 AC 300 ms
97,536 KB
testcase_10 AC 258 ms
94,592 KB
testcase_11 AC 97 ms
77,704 KB
testcase_12 AC 252 ms
94,148 KB
testcase_13 AC 68 ms
75,520 KB
testcase_14 AC 326 ms
97,536 KB
testcase_15 AC 286 ms
94,208 KB
testcase_16 AC 320 ms
97,152 KB
testcase_17 AC 154 ms
91,396 KB
testcase_18 AC 82 ms
85,756 KB
testcase_19 AC 153 ms
82,688 KB
testcase_20 AC 193 ms
86,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq


def main():
    N = int(input())
    A = list(map(int, input().split()))
    B = [(a, i) for i, a in enumerate(A)]
    B.sort(reverse=True)

    ans = [-1] * (N - 1)
    for to in range(1, N):
        a, i = B.pop()
        if a > to:
            print("NO")
            return
        ans[i] = to - a + 1
    print("YES")
    print(*ans, sep="\n")


main()
0