結果

問題 No.1640 簡単な色塗り
ユーザー googol_S0googol_S0
提出日時 2021-08-06 21:33:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,572 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 640,864 KB
最終ジャッジ日時 2024-06-29 14:52:09
合計ジャッジ時間 57,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
60,104 KB
testcase_01 AC 37 ms
53,684 KB
testcase_02 AC 37 ms
54,624 KB
testcase_03 AC 37 ms
53,552 KB
testcase_04 AC 794 ms
289,884 KB
testcase_05 TLE -
testcase_06 AC 37 ms
54,224 KB
testcase_07 AC 37 ms
52,684 KB
testcase_08 AC 38 ms
54,788 KB
testcase_09 AC 37 ms
53,304 KB
testcase_10 AC 945 ms
238,728 KB
testcase_11 AC 841 ms
205,248 KB
testcase_12 AC 752 ms
191,572 KB
testcase_13 AC 1,640 ms
289,404 KB
testcase_14 AC 1,639 ms
289,244 KB
testcase_15 AC 684 ms
161,364 KB
testcase_16 AC 676 ms
178,660 KB
testcase_17 AC 1,306 ms
281,344 KB
testcase_18 AC 200 ms
94,392 KB
testcase_19 AC 916 ms
194,780 KB
testcase_20 AC 939 ms
231,992 KB
testcase_21 AC 807 ms
201,596 KB
testcase_22 AC 222 ms
89,552 KB
testcase_23 AC 1,094 ms
246,500 KB
testcase_24 AC 341 ms
119,420 KB
testcase_25 AC 794 ms
193,416 KB
testcase_26 AC 1,495 ms
273,000 KB
testcase_27 AC 692 ms
159,908 KB
testcase_28 AC 1,513 ms
282,040 KB
testcase_29 AC 1,110 ms
262,120 KB
testcase_30 AC 532 ms
156,528 KB
testcase_31 TLE -
testcase_32 AC 1,882 ms
358,656 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 477 ms
148,264 KB
testcase_37 AC 723 ms
241,332 KB
testcase_38 TLE -
testcase_39 AC 854 ms
252,436 KB
testcase_40 AC 945 ms
240,884 KB
testcase_41 AC 1,934 ms
397,848 KB
testcase_42 AC 1,002 ms
279,932 KB
testcase_43 AC 1,439 ms
358,804 KB
testcase_44 AC 1,410 ms
374,852 KB
testcase_45 AC 1,455 ms
375,200 KB
testcase_46 AC 511 ms
161,900 KB
testcase_47 AC 570 ms
209,944 KB
testcase_48 MLE -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
07_evil_01.txt -- -
07_evil_02.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.buffer.readline
N=int(input())
X=[list(map(int,input().split())) for i in range(N)]
for i in range(N):
  for j in range(2):
    X[i][j]-=1
Q=[[] for i in range(N)]
for i in range(N):
  for j in range(2):
    Q[X[i][j]].append(j*N+i)
G=[[] for i in range(N*6)]
v,w=0,0
for i in range(N):
  w+=len(Q[i])
  for j in range(len(Q[i])):
    if j:
      G[(N+Q[i][j])%(2*N)].append(2*N+(v+j-1)*2)
    if j+1!=len(Q[i]):
      G[(N+Q[i][j])%(2*N)].append(2*N+(v+j+1)*2+1)
    G[2*N+(v+j)*2].append(Q[i][j])
    G[2*N+(v+j)*2+1].append(Q[i][j])
  for j in range(v,w):
    if j!=v:
      G[2*N+j*2].append(2*N+(j-1)*2)
    if j+1!=w:
      G[2*N+j*2+1].append(2*N+(j+1)*2+1)
  v=w
sys.setrecursionlimit(10**7)
def SCC(G):
  D=[]
  C=[len(G)-1]
  U=[1]*len(G)
  def DFS(x):
    if U[x]:
      U[x]=0
      for i in range(len(G[x])):
        DFS(G[x][i])
      D.append(x)
  
  for i in range(len(G)):
    if U[i]:
      DFS(i)
  GR=[[] for i in range(len(G))]
  for i in range(len(G)):
    for j in range(len(G[i])):
      GR[G[i][j]].append(i)
  R=[]
  U=[1]*len(G)
  def DFSR(x):
    if U[x]:
      R[-1].append(x)
      U[x]=0
      for i in range(len(GR[x])):
        DFSR(GR[x][i])
  
  for i in range(len(G)-1,-1,-1):
    if U[D[i]]:
      R.append([])
      DFSR(D[i])
  return R

C=[0]*len(G)
G=SCC(G)
for i in range(len(G)):
  for j in range(len(G[i])):
    C[G[i][j]]=i
ANS=[0]*N
for i in range(N):
  if C[i]==C[i+N]:
    print('No')
    exit()
  if C[i]<C[i+N]:
    ANS[i]=X[i][0]+1
  else:
    ANS[i]=X[i][1]+1
print('Yes')
print(*ANS,sep='\n')
0