結果

問題 No.1480 Many Complete Graphs
ユーザー 已经死了已经死了
提出日時 2024-06-26 14:03:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 727 ms / 2,000 ms
コード長 2,790 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 154,740 KB
最終ジャッジ日時 2024-06-26 14:04:20
合計ジャッジ時間 27,311 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
92,584 KB
testcase_01 AC 149 ms
92,320 KB
testcase_02 AC 148 ms
92,508 KB
testcase_03 AC 148 ms
92,544 KB
testcase_04 AC 150 ms
92,648 KB
testcase_05 AC 152 ms
92,672 KB
testcase_06 AC 153 ms
92,656 KB
testcase_07 AC 160 ms
92,544 KB
testcase_08 AC 183 ms
92,472 KB
testcase_09 AC 171 ms
93,696 KB
testcase_10 AC 164 ms
93,348 KB
testcase_11 AC 149 ms
92,832 KB
testcase_12 AC 180 ms
93,076 KB
testcase_13 AC 206 ms
101,120 KB
testcase_14 AC 206 ms
100,040 KB
testcase_15 AC 349 ms
116,136 KB
testcase_16 AC 280 ms
106,956 KB
testcase_17 AC 283 ms
106,888 KB
testcase_18 AC 205 ms
98,848 KB
testcase_19 AC 320 ms
107,772 KB
testcase_20 AC 334 ms
114,564 KB
testcase_21 AC 233 ms
112,336 KB
testcase_22 AC 200 ms
99,388 KB
testcase_23 AC 304 ms
128,784 KB
testcase_24 AC 434 ms
133,532 KB
testcase_25 AC 473 ms
137,888 KB
testcase_26 AC 529 ms
139,936 KB
testcase_27 AC 422 ms
133,516 KB
testcase_28 AC 460 ms
147,484 KB
testcase_29 AC 508 ms
147,940 KB
testcase_30 AC 462 ms
146,304 KB
testcase_31 AC 476 ms
146,564 KB
testcase_32 AC 490 ms
147,432 KB
testcase_33 AC 458 ms
146,264 KB
testcase_34 AC 454 ms
147,416 KB
testcase_35 AC 462 ms
147,808 KB
testcase_36 AC 472 ms
146,784 KB
testcase_37 AC 489 ms
146,408 KB
testcase_38 AC 463 ms
147,556 KB
testcase_39 AC 466 ms
146,052 KB
testcase_40 AC 490 ms
146,400 KB
testcase_41 AC 455 ms
146,020 KB
testcase_42 AC 455 ms
147,680 KB
testcase_43 AC 486 ms
147,420 KB
testcase_44 AC 467 ms
146,272 KB
testcase_45 AC 496 ms
147,548 KB
testcase_46 AC 460 ms
146,144 KB
testcase_47 AC 690 ms
153,188 KB
testcase_48 AC 727 ms
153,604 KB
testcase_49 AC 727 ms
152,656 KB
testcase_50 AC 356 ms
144,336 KB
testcase_51 AC 700 ms
152,976 KB
testcase_52 AC 610 ms
149,200 KB
testcase_53 AC 598 ms
148,952 KB
testcase_54 AC 629 ms
149,704 KB
testcase_55 AC 605 ms
148,712 KB
testcase_56 AC 623 ms
148,316 KB
testcase_57 AC 378 ms
154,740 KB
testcase_58 AC 515 ms
150,200 KB
evil_aftercontest.txt AC 767 ms
209,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os,sys,random,threading
#sys.exit() 退出程序
#sys.setrecursionlimit(10**6) #调整栈空间
from random import randint,choice,shuffle
#randint(a,b)从[a,b]范围随机选择一个数
#choice(seq)seq可以是一个列表,元组或字符串,从seq中随机选取一个元素
#shuffle(x)将一个可变的序列x中的元素打乱
from copy import deepcopy
from io import BytesIO,IOBase
from types import GeneratorType
from functools import lru_cache,reduce
#reduce(op,迭代对象)
from bisect import bisect_left,bisect_right
#bisect_left(x) 大于等于x的第一个下标
#bisect_right(x) 大于x的第一个下标
from collections import Counter,defaultdict,deque
from itertools import accumulate,combinations,permutations
#accumulate(a)用a序列生成一个累积迭代器,一般list化前面放个[0]做前缀和用
#combinations(a,k)a序列选k个 组合迭代器
#permutations(a,k)a序列选k个 排列迭代器
from heapq import  heapify,heappop,heappush
#heapify将列表转为堆
from typing import Generic,Iterable,Iterator,TypeVar,Union,List
from string import ascii_lowercase,ascii_uppercase,digits
#小写字母,大写字母,十进制数字
from math import ceil,floor,sqrt,pi,factorial,gcd,log,log10,log2,inf
#ceil向上取整,floor向下取整 ,sqrt开方 ,factorial阶乘
from decimal import Decimal,getcontext
#Decimal(s) 实例化Decimal对象,一般使用字符串
#getcontext().prec=100 修改精度
from sys import stdin, stdout, setrecursionlimit
input = lambda: sys.stdin.readline().rstrip("\r\n")
MI = lambda :map(int,input().split())
li = lambda :list(MI())
ii = lambda :int(input())
mod = int(1e9 + 7) #998244353
inf = 1<<60
py = lambda :print("YES")
pn = lambda :print("NO")
DIRS = [(0, 1), (1, 0), (0, -1), (-1, 0)]  # 右下左上
DIRS8 = [(0, 1), (1, 1), (1, 0), (1, -1), (0, -1), (-1, -1), (-1, 0),(-1, 1)]  # →↘↓↙←↖↑↗

def dijkstra(g, start):
    dist = [inf] * len(g)
    dist[start] = 0
    h = [(0, start)]
    while h:
        d, x = heappop(h)
        if d > dist[x]:
            continue
        for y, wt in g[x]:
            new_d = dist[x] + wt
            if new_d < dist[y]:
                dist[y] = new_d
                heappush(h, (new_d, y))
    return dist



n,m=li()

g=[[] for _ in range(n+4*m+10)]

for i in range(1,m+1):
    s=li()
    c=s[1]
    s=s[2:]
    for x in s:
        if x%2==0:
            g[x].append([n+4*i+1,x+c])
            g[x].append([n+4*i+2,x+c])
            g[n+4*i+2].append([x,x+c])
            g[n+4*i+4].append([x,x+c])
        else:
            g[x].append([n+4*i+3,x+c])
            g[x].append([n+4*i+4,x+c+1])
            g[n+4*i+1].append([x,x+c+1])
            g[n+4*i+3].append([x,x+c])


dij=dijkstra(g,1)

if dij[n]==inf:
    print(-1)
else:
    print(dij[n]//2)
0