結果

問題 No.1436 Rgaph
ユーザー chineristACchineristAC
提出日時 2021-03-19 23:20:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 850 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 79,304 KB
最終ジャッジ日時 2024-11-19 01:31:21
合計ジャッジ時間 6,427 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,348 KB
testcase_01 AC 43 ms
56,272 KB
testcase_02 AC 47 ms
56,144 KB
testcase_03 AC 45 ms
57,028 KB
testcase_04 AC 43 ms
57,652 KB
testcase_05 AC 46 ms
57,248 KB
testcase_06 AC 130 ms
78,172 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 48 ms
59,000 KB
testcase_12 AC 49 ms
59,336 KB
testcase_13 AC 49 ms
59,124 KB
testcase_14 AC 61 ms
68,160 KB
testcase_15 AC 49 ms
58,956 KB
testcase_16 AC 57 ms
68,524 KB
testcase_17 AC 64 ms
71,244 KB
testcase_18 AC 64 ms
70,644 KB
testcase_19 AC 61 ms
70,476 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 181 ms
78,400 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 285 ms
78,932 KB
testcase_26 AC 278 ms
78,772 KB
testcase_27 AC 280 ms
79,304 KB
testcase_28 WA -
testcase_29 AC 224 ms
79,212 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:
    exit(print(-1))
random.shuffle(ans)
print("".join(ans))
0