結果

問題 No.1290 Addition and Subtraction Operation
ユーザー chineristACchineristAC
提出日時 2020-11-13 22:49:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 914 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 94,116 KB
最終ジャッジ日時 2024-07-22 21:49:24
合計ジャッジ時間 9,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,224 KB
testcase_01 AC 38 ms
52,536 KB
testcase_02 AC 37 ms
53,092 KB
testcase_03 AC 37 ms
53,492 KB
testcase_04 AC 38 ms
52,464 KB
testcase_05 AC 37 ms
52,484 KB
testcase_06 AC 37 ms
53,056 KB
testcase_07 AC 37 ms
53,012 KB
testcase_08 AC 37 ms
53,028 KB
testcase_09 AC 42 ms
53,728 KB
testcase_10 AC 37 ms
53,568 KB
testcase_11 AC 37 ms
52,888 KB
testcase_12 AC 38 ms
52,072 KB
testcase_13 AC 38 ms
53,080 KB
testcase_14 AC 36 ms
53,772 KB
testcase_15 AC 39 ms
53,020 KB
testcase_16 AC 37 ms
52,568 KB
testcase_17 AC 37 ms
52,768 KB
testcase_18 AC 37 ms
52,596 KB
testcase_19 AC 35 ms
52,744 KB
testcase_20 AC 37 ms
52,132 KB
testcase_21 AC 37 ms
52,156 KB
testcase_22 AC 38 ms
53,340 KB
testcase_23 AC 37 ms
52,432 KB
testcase_24 AC 38 ms
52,896 KB
testcase_25 AC 37 ms
52,284 KB
testcase_26 AC 37 ms
52,808 KB
testcase_27 AC 37 ms
52,692 KB
testcase_28 AC 38 ms
53,028 KB
testcase_29 AC 38 ms
53,152 KB
testcase_30 AC 38 ms
53,500 KB
testcase_31 AC 37 ms
53,252 KB
testcase_32 AC 38 ms
54,040 KB
testcase_33 AC 37 ms
52,268 KB
testcase_34 AC 37 ms
53,356 KB
testcase_35 AC 37 ms
52,256 KB
testcase_36 AC 37 ms
52,652 KB
testcase_37 AC 38 ms
53,412 KB
testcase_38 AC 38 ms
53,888 KB
testcase_39 AC 41 ms
52,768 KB
testcase_40 AC 41 ms
52,484 KB
testcase_41 AC 41 ms
53,072 KB
testcase_42 AC 79 ms
77,540 KB
testcase_43 AC 81 ms
77,032 KB
testcase_44 AC 80 ms
77,320 KB
testcase_45 AC 77 ms
77,000 KB
testcase_46 AC 77 ms
77,464 KB
testcase_47 AC 75 ms
77,052 KB
testcase_48 AC 74 ms
77,360 KB
testcase_49 AC 76 ms
77,364 KB
testcase_50 AC 77 ms
77,480 KB
testcase_51 AC 80 ms
77,480 KB
testcase_52 AC 76 ms
76,908 KB
testcase_53 AC 76 ms
77,580 KB
testcase_54 AC 77 ms
77,212 KB
testcase_55 AC 75 ms
77,256 KB
testcase_56 AC 75 ms
77,304 KB
testcase_57 AC 95 ms
92,968 KB
testcase_58 AC 104 ms
93,436 KB
testcase_59 AC 94 ms
93,140 KB
testcase_60 AC 200 ms
93,296 KB
testcase_61 AC 154 ms
92,944 KB
testcase_62 AC 164 ms
92,744 KB
testcase_63 AC 107 ms
93,420 KB
testcase_64 AC 70 ms
87,048 KB
testcase_65 AC 89 ms
92,828 KB
testcase_66 AC 120 ms
92,996 KB
testcase_67 AC 197 ms
93,132 KB
testcase_68 AC 148 ms
92,984 KB
testcase_69 AC 99 ms
93,196 KB
testcase_70 AC 102 ms
93,240 KB
testcase_71 AC 123 ms
93,224 KB
testcase_72 AC 89 ms
92,936 KB
testcase_73 AC 127 ms
93,012 KB
testcase_74 AC 66 ms
83,848 KB
testcase_75 AC 87 ms
93,104 KB
testcase_76 AC 103 ms
93,000 KB
testcase_77 AC 219 ms
93,664 KB
testcase_78 AC 194 ms
93,772 KB
testcase_79 AC 178 ms
93,908 KB
testcase_80 AC 215 ms
93,860 KB
testcase_81 AC 218 ms
93,796 KB
testcase_82 AC 128 ms
93,716 KB
testcase_83 AC 192 ms
94,116 KB
testcase_84 AC 143 ms
93,932 KB
testcase_85 AC 99 ms
93,540 KB
testcase_86 AC 86 ms
93,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

N,M = map(int,input().split())
B = list(map(int,input().split()))
for i in range(1,N,2):
    B[i] = -B[i]
for i in range(N-1,0,-1):
    B[i] -= B[i-1]

edge = [[] for i in range(N+1)]
for _ in range(M):
    l,r = map(int,input().split())
    edge[r].append(l-1)
    edge[l-1].append(r)

used = [False]*(N+1)
tmp = 0

def dfs(s):
    tmp = 0
    used[s] = True
    tmp += B[s]
    stack = [s]
    while stack:
        v = stack.pop()
        for nv in edge[v]:
            if not used[nv]:
                used[nv] = True
                if nv!=N:
                    tmp += B[nv]
                stack.append(nv)
    return tmp

for i in range(N):
    check = used[-1]
    if not used[i]:
        tmp = dfs(i)
        check2 = used[-1]
        if not check and check2:
            continue
        else:
            if tmp!=0:
                exit(print("NO"))

print("YES")
0