結果

問題 No.1436 Rgaph
ユーザー chineristACchineristAC
提出日時 2021-03-19 23:25:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 995 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 79,500 KB
最終ジャッジ日時 2024-11-19 01:48:05
合計ジャッジ時間 6,066 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,664 KB
testcase_01 AC 42 ms
57,520 KB
testcase_02 AC 41 ms
56,852 KB
testcase_03 AC 42 ms
56,272 KB
testcase_04 AC 43 ms
57,348 KB
testcase_05 AC 41 ms
56,524 KB
testcase_06 AC 130 ms
78,532 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 46 ms
59,452 KB
testcase_12 AC 46 ms
59,484 KB
testcase_13 AC 47 ms
60,352 KB
testcase_14 AC 54 ms
67,640 KB
testcase_15 AC 50 ms
59,636 KB
testcase_16 AC 54 ms
68,312 KB
testcase_17 AC 60 ms
71,284 KB
testcase_18 AC 57 ms
71,416 KB
testcase_19 AC 58 ms
70,440 KB
testcase_20 AC 105 ms
77,864 KB
testcase_21 AC 93 ms
77,816 KB
testcase_22 AC 178 ms
78,532 KB
testcase_23 AC 154 ms
78,360 KB
testcase_24 AC 193 ms
78,820 KB
testcase_25 AC 254 ms
79,228 KB
testcase_26 AC 289 ms
78,952 KB
testcase_27 AC 283 ms
79,384 KB
testcase_28 WA -
testcase_29 AC 226 ms
79,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,M = mi()
edge = [[] for i in range(N)]
for _ in range(M):
    a,b = mi()
    edge[a-1].append(b-1)

for s in range(N):
    visit = [[False,False] for i in range(N)]
    visit[s][0] = True
    stack = [(s,0)]
    while stack:
        v,p = stack.pop()
        for nv in edge[v]:
            if not visit[nv][1-p]:
                visit[nv][1-p] = True
                stack.append((nv,1-p))
    if any(not visit[i][0] for i in range(N)):
        exit(print(-1))

ans = ["R"] * (M//2) + ["G"] * (M//2)
if M%2:
    ans += ["R"]

p = [-1 for i in range(N)]
for i in range(N):
    if len(edge[i])==1:
        p[i] = edge[i][0]
    else:
        break
else:
    exit(print(-1))

random.shuffle(ans)
print("".join(ans))
0