結果

問題 No.629 グラフの中に眠る門松列
ユーザー CreativeGP1CreativeGP1
提出日時 2018-02-23 23:33:21
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 1,482 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 14,624 KB
最終ジャッジ日時 2024-10-10 03:56:28
合計ジャッジ時間 6,456 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,296 KB
testcase_01 AC 17 ms
7,168 KB
testcase_02 AC 16 ms
7,424 KB
testcase_03 AC 16 ms
7,296 KB
testcase_04 AC 16 ms
7,296 KB
testcase_05 AC 16 ms
7,168 KB
testcase_06 AC 16 ms
7,296 KB
testcase_07 AC 16 ms
7,296 KB
testcase_08 AC 16 ms
7,296 KB
testcase_09 AC 16 ms
7,296 KB
testcase_10 AC 17 ms
7,168 KB
testcase_11 AC 16 ms
7,424 KB
testcase_12 AC 16 ms
7,168 KB
testcase_13 AC 16 ms
7,424 KB
testcase_14 AC 17 ms
7,296 KB
testcase_15 AC 17 ms
7,296 KB
testcase_16 AC 17 ms
7,296 KB
testcase_17 AC 17 ms
7,168 KB
testcase_18 AC 16 ms
7,296 KB
testcase_19 AC 17 ms
7,168 KB
testcase_20 AC 18 ms
7,296 KB
testcase_21 TLE -
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 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python
# -*- coding: utf-8 -*-

def memoize(f):
    cache = {}
    def helper(*args):
        if args not in cache:
            cache[args] = f(*args)
        return cache[args]
    return helper

import sys
import copy
from operator import itemgetter
import itertools
from time import sleep
import random


@memoize
def eval(a, b, c):
    if a == b or b == c or a == c: return False
    return max(a, b, c) == b or min(a, b, c) == b

l = sys.stdin.readline().split(' ')
N = int(l[0])
M = int(l[1])
a = []
l = sys.stdin.readline().split(' ')
path = {}
can = []
for i in xrange(N):
    a.append(int(l[i]))
    path[i+1] = []
    can.append([i+1])
u = []
v = []
for i in xrange(M):
    l = sys.stdin.readline().split(' ')
    u.append(int(l[0]))
    v.append(int(l[1]))


for i, j in zip(u, v):
    path[i].append(j)
    path[j].append(i)

count = 0
while True:
    count += 1
    if len(can) == 0: break
    if count > N*N: break
    newcan = []
    for c in can:
        if len(c) == 3:
            if eval(a[c[0]-1], a[c[1]-1], a[c[2]-1]):
                print "YES"
                sys.exit(0)
        else:
            try:
                p = random.choice(path[c[-1]])
                c.append(p)
                newcan.append([p])
                # del path[c[-2]][0]
                newcan.append(c)
            except IndexError: pass
    newcan.sort()
    if can == newcan: break
    can = list(newcan for newcan,_ in itertools.groupby(newcan))

print "NO"
0