結果

問題 No.2826 Earthwork
ユーザー FplusFplusFFplusFplusF
提出日時 2024-07-26 17:13:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,560 ms / 5,000 ms
コード長 2,206 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 387,664 KB
最終ジャッジ日時 2024-07-26 17:15:40
合計ジャッジ時間 78,906 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,708 KB
testcase_01 AC 273 ms
85,308 KB
testcase_02 AC 3,746 ms
370,852 KB
testcase_03 AC 539 ms
108,388 KB
testcase_04 AC 2,772 ms
331,292 KB
testcase_05 AC 588 ms
142,168 KB
testcase_06 AC 1,707 ms
242,212 KB
testcase_07 AC 2,341 ms
282,048 KB
testcase_08 AC 3,574 ms
381,280 KB
testcase_09 AC 4,560 ms
371,220 KB
testcase_10 AC 3,629 ms
370,648 KB
testcase_11 AC 2,193 ms
375,196 KB
testcase_12 AC 336 ms
85,656 KB
testcase_13 AC 1,100 ms
174,628 KB
testcase_14 AC 4,352 ms
387,664 KB
testcase_15 AC 1,090 ms
158,660 KB
testcase_16 AC 1,190 ms
237,964 KB
testcase_17 AC 667 ms
125,108 KB
testcase_18 AC 1,129 ms
232,412 KB
testcase_19 AC 587 ms
142,016 KB
testcase_20 AC 2,889 ms
327,616 KB
testcase_21 AC 195 ms
85,120 KB
testcase_22 AC 2,648 ms
279,408 KB
testcase_23 AC 2,230 ms
271,420 KB
testcase_24 AC 3,844 ms
383,636 KB
testcase_25 AC 802 ms
275,756 KB
testcase_26 AC 2,391 ms
277,408 KB
testcase_27 AC 207 ms
81,164 KB
testcase_28 AC 4,142 ms
386,644 KB
testcase_29 AC 367 ms
103,572 KB
testcase_30 AC 315 ms
89,636 KB
testcase_31 AC 491 ms
102,044 KB
testcase_32 AC 307 ms
83,508 KB
testcase_33 AC 2,049 ms
250,088 KB
testcase_34 AC 3,649 ms
370,888 KB
testcase_35 AC 855 ms
150,140 KB
testcase_36 AC 3,953 ms
386,556 KB
testcase_37 AC 4,069 ms
379,660 KB
testcase_38 AC 2,068 ms
238,872 KB
testcase_39 AC 279 ms
91,968 KB
testcase_40 AC 321 ms
88,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n=int(input())
h=[list(map(int,input().split())) for i in range(n)]
s=[input() for i in range(n)]
a=[list(map(int,input().split())) for i in range(n-1)]
b=[list(map(int,input().split())) for i in range(n)]
q=int(input())
rce=[tuple(map(int,input().split())) for i in range(q)]

INF=int(4e18)

def to(i,j):
    return i*n+j

mx=[-INF]*n*n

for t in range(2):

    g=[[] for i in range(n*n+1)]

    for i in range(n-1):
        for j in range(n):
            p=h[i][j]+h[i+1][j]
            l=-p-a[i][j]*abs(p)
            r=-p+a[i][j]*abs(p)
            if (i+j)%2==t:
                g[to(i,j)].append((to(i+1,j),-l))
                g[to(i+1,j)].append((to(i,j),r))
            else:
                g[to(i,j)].append((to(i+1,j),r))
                g[to(i+1,j)].append((to(i,j),-l))
    for i in range(n):
        for j in range(n-1):
            p=h[i][j]+h[i][j+1]
            l=-p-b[i][j]*abs(p)
            r=-p+b[i][j]*abs(p)
            if (i+j)%2==t:
                g[to(i,j)].append((to(i,j+1),-l))
                g[to(i,j+1)].append((to(i,j),r))
            else:
                g[to(i,j)].append((to(i,j+1),r))
                g[to(i,j+1)].append((to(i,j),-l))
    
    for i in range(n):
        for j in range(n):
            if s[i][j]=='=' or s[i][j]=='-':
                if (i+j)%2==t:
                    g[n*n].append((to(i,j),0))
                else:
                    g[to(i,j)].append((n*n,0))
            if s[i][j]=='=' or s[i][j]=='+':
                if (i+j)%2==t:
                    g[to(i,j)].append((n*n,0))
                else:
                    g[n*n].append((to(i,j),0))

    dist=[INF]*(n*n+1)
    dist[n*n]=0
    hq=[(0,n*n)]
    heapq.heapify(hq)

    while hq:
        d,i=heapq.heappop(hq)
        if d!=dist[i]:
            continue        
        for ti,td in g[i]:
            if dist[i]+td<dist[ti]:
                dist[ti]=dist[i]+td
                heapq.heappush(hq,(dist[ti],ti))

    for i in range(n):
        for j in range(n):
            if (i+j)%2==t:
                mx[to(i,j)]=max(mx[to(i,j)],h[i][j]+dist[to(i,j)])

for r,c,e in rce:
    r-=1
    c-=1
    if e<=mx[to(r,c)]:
        print("Yes")
    else:
        print("No")
0