結果

問題 No.1370 置換門松列
ユーザー ygd.ygd.
提出日時 2021-01-30 00:08:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,384 KB
最終ジャッジ日時 2024-09-14 19:23:36
合計ジャッジ時間 3,639 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,376 KB
testcase_01 AC 46 ms
54,144 KB
testcase_02 AC 44 ms
54,016 KB
testcase_03 AC 45 ms
53,888 KB
testcase_04 AC 44 ms
53,376 KB
testcase_05 AC 46 ms
54,016 KB
testcase_06 AC 44 ms
53,632 KB
testcase_07 AC 43 ms
54,016 KB
testcase_08 AC 44 ms
54,272 KB
testcase_09 AC 43 ms
54,272 KB
testcase_10 AC 45 ms
53,760 KB
testcase_11 AC 45 ms
53,632 KB
testcase_12 AC 44 ms
54,144 KB
testcase_13 AC 44 ms
53,632 KB
testcase_14 AC 44 ms
54,144 KB
testcase_15 AC 44 ms
53,888 KB
testcase_16 AC 43 ms
54,272 KB
testcase_17 AC 44 ms
53,632 KB
testcase_18 AC 45 ms
53,888 KB
testcase_19 AC 45 ms
53,888 KB
testcase_20 AC 47 ms
53,888 KB
testcase_21 AC 132 ms
101,240 KB
testcase_22 AC 101 ms
97,888 KB
testcase_23 AC 128 ms
102,384 KB
testcase_24 AC 73 ms
88,320 KB
testcase_25 AC 150 ms
101,260 KB
testcase_26 AC 156 ms
101,340 KB
testcase_27 AC 98 ms
96,768 KB
testcase_28 AC 102 ms
97,188 KB
testcase_29 AC 75 ms
87,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N,M = map(int,input().split()); INF = float("inf")
A = list(map(int,input().split()))
G = [[] for _ in range(M)]
deg1 = [0] * M #出次数
deg2 = [0] * M #入次数
for i in range(N-1):
    a = A[i] - 1 #0index
    b = A[i+1] - 1
    if a == b:
        print("No");exit()
    if i < N-2:
        c = A[i+2] - 1
        if a == c:
            print("No");exit()
    if i%2 == 0:
        G[a].append(b)
        deg1[a] += 1
        deg2[b] += 1
    else:
        G[b].append(a)
        deg1[b] += 1
        deg2[a] += 1
#print(G)

def topological(start,graph):
    topo = []
    while start:
        v = start.pop()
        topo.append(v)
        for u in graph[v]:
            deg2[u] -= 1
            if deg2[u] == 0:
                start.append(u)
    # print(edges, minscore)
 
    return topo

SG = []
used = [0] * M
start = []
for i in range(M):
    if deg2[i] == 0:
        SG.append(i)
#print(SG)
TS = topological(SG,G)
#print(TS)
if len(TS) < M:
    print("No")
else:
    ans = [-1]*M
    for i, v in enumerate(TS):
        ans[v] = i + 1
    print("Yes")
    print(*ans)
0