結果

問題 No.1373 Directed Operations
ユーザー donutholedonuthole
提出日時 2021-02-05 21:49:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 865 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 100,992 KB
最終ジャッジ日時 2024-07-02 12:21:48
合計ジャッジ時間 6,012 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,272 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 129 ms
100,992 KB
testcase_03 AC 101 ms
100,992 KB
testcase_04 AC 101 ms
100,488 KB
testcase_05 AC 45 ms
54,400 KB
testcase_06 AC 453 ms
100,224 KB
testcase_07 AC 66 ms
67,840 KB
testcase_08 AC 95 ms
78,080 KB
testcase_09 AC 345 ms
100,480 KB
testcase_10 AC 293 ms
100,292 KB
testcase_11 AC 103 ms
79,232 KB
testcase_12 AC 289 ms
100,096 KB
testcase_13 AC 68 ms
69,248 KB
testcase_14 AC 477 ms
100,224 KB
testcase_15 AC 428 ms
99,984 KB
testcase_16 AC 466 ms
100,136 KB
testcase_17 AC 172 ms
97,024 KB
testcase_18 AC 96 ms
88,904 KB
testcase_19 AC 199 ms
85,376 KB
testcase_20 AC 268 ms
89,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import collections
import bisect


# sys.setrecursionlimit(10000001)
INF = 10 ** 20
MOD = 10 ** 9 + 7
# MOD = 998244353


def ni(): return int(sys.stdin.buffer.readline())
def ns(): return map(int, sys.stdin.buffer.readline().split())
def na(): return list(map(int, sys.stdin.buffer.readline().split()))
def na1(): return list(map(lambda x: int(x)-1, sys.stdin.buffer.readline().split()))


# ===CODE===
def main():
    n = ni()
    a = na()

    a = [[ai, i, -1] for i, ai in enumerate(a)]
    a.sort()

    flg = True
    for i in range(2, n+1):
        if a[i-2][0] > i-1:
            flg = False
            break
        a[i-2][2] = i-a[i-2][0]

    if flg:
        print("YES")
        a.sort(key=lambda x: x[1])
        for ai, idx,res in a:
            print(res)
    else:
        print("NO")


if __name__ == '__main__':
    main()
0