結果

問題 No.1370 置換門松列
ユーザー GER_chenGER_chen
提出日時 2021-01-30 13:23:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,091 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 119,884 KB
最終ジャッジ日時 2024-11-08 04:18:31
合計ジャッジ時間 4,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,144 KB
testcase_01 AC 44 ms
54,272 KB
testcase_02 AC 43 ms
54,144 KB
testcase_03 AC 54 ms
53,888 KB
testcase_04 WA -
testcase_05 AC 45 ms
53,504 KB
testcase_06 WA -
testcase_07 AC 44 ms
54,016 KB
testcase_08 AC 46 ms
53,504 KB
testcase_09 AC 45 ms
53,888 KB
testcase_10 AC 44 ms
53,632 KB
testcase_11 AC 44 ms
54,016 KB
testcase_12 AC 45 ms
53,828 KB
testcase_13 AC 43 ms
54,272 KB
testcase_14 AC 44 ms
54,272 KB
testcase_15 AC 44 ms
54,272 KB
testcase_16 AC 44 ms
53,760 KB
testcase_17 AC 45 ms
54,144 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 44 ms
54,144 KB
testcase_21 AC 178 ms
119,884 KB
testcase_22 AC 114 ms
97,260 KB
testcase_23 AC 150 ms
97,536 KB
testcase_24 AC 71 ms
81,152 KB
testcase_25 AC 277 ms
119,548 KB
testcase_26 AC 277 ms
117,108 KB
testcase_27 AC 116 ms
97,408 KB
testcase_28 AC 120 ms
97,792 KB
testcase_29 AC 92 ms
90,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#1370
import sys;input = lambda: sys.stdin.readline().rstrip()
#import numpy as np
#import heapq
from collections import deque
def topological_sort(In, Out):
    """
    In: 入力してくる頂点集合
    Out: 出力先の頂点集合
    """
    dq = deque()
    L = []
    for i, I in enumerate(In):
        if not I:
            dq.append(i)
    while dq:
        v = dq.popleft()
        L.append(v)
        for w in Out[v]:
            In[w].remove(v)
            if not In[w]:
                dq.append(w)
    if len(L) < len(In):
        return False
    return L

# = input()
# = int(input())
n, m = map(int,input().split())
A = list(map(lambda x: int(x)-1,input().split()))  #長さn
#DAGか?
In, Out = [set() for _ in range(m)], [set() for _ in range(m)]
for i in range(n-1):
    if i&1:
        In[A[i]].add(A[i+1])
        Out[A[i+1]].add(A[i])
    else:
        In[A[i+1]].add(A[i])
        Out[A[i]].add(A[i+1])

ts = topological_sort(In, Out)

if not ts:
    print('No')
else:
    print('Yes')
    X = [None]*m
    for i in range(m):
        X[ts[i]] = i+1
    print(*X)
0