結果

問題 No.1612 I hate Construct a Palindrome
ユーザー mkawa2mkawa2
提出日時 2024-06-13 23:25:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,554 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 65,664 KB
最終ジャッジ日時 2024-06-13 23:25:58
合計ジャッジ時間 12,456 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,948 KB
testcase_01 AC 36 ms
11,392 KB
testcase_02 AC 975 ms
65,664 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 37 ms
11,392 KB
testcase_05 AC 927 ms
65,660 KB
testcase_06 AC 587 ms
51,700 KB
testcase_07 AC 630 ms
49,920 KB
testcase_08 AC 720 ms
54,912 KB
testcase_09 AC 464 ms
45,696 KB
testcase_10 AC 509 ms
45,696 KB
testcase_11 AC 406 ms
45,568 KB
testcase_12 AC 576 ms
50,572 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(1000006)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

def dfs(ok,u):
    if ok(u):return u
    for v,i in to[u]:
        if fin[v]:continue
        fin[v]=1
        ii.append(i)
        ret=dfs(ok,v)
        if ret!=-1:return ret
        ii.pop()
        fin[v]=0
    return -1

n,m=LI()
to=[[] for _ in range(n)]
cc=[]
for i in range(m):
    u,v,c=SI().split()
    u=int1(u)
    v=int1(v)
    c=ord(c)-97
    to[u].append((v,i))
    to[v].append((u,i))
    cc.append(c)

if all(c==cc[0] for c in cc):
    print(-1)
    exit()
 
s,si=to[0][0]
ii=[si]
fin=[0]*n
fin[s]=1
ok1=lambda x:cc[ii[-1]]!=cc[si]
v=dfs(ok1,s)
# print(ii,v)

if v!=n-1:
    pre,ii=ii,[]
    fin=[0]*n
    fin[v]=1
    ok2=lambda x:x==n-1
    dfs(ok2,v)
    ii=pre+ii

# print(ii)
ee=[cc[i] for i in ii]
if ee==ee[::-1]:ii=[si,si]+ii
print(len(ii))
for i in ii:print(i+1)
0