結果

問題 No.2509 Beam Shateki
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-10-20 21:36:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,593 bytes
コンパイル時間 1,292 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 78,292 KB
最終ジャッジ日時 2024-09-20 17:40:02
合計ジャッジ時間 7,869 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,548 KB
testcase_01 AC 43 ms
54,192 KB
testcase_02 AC 41 ms
54,352 KB
testcase_03 AC 105 ms
77,316 KB
testcase_04 AC 103 ms
77,472 KB
testcase_05 AC 102 ms
77,416 KB
testcase_06 AC 101 ms
77,372 KB
testcase_07 AC 103 ms
77,208 KB
testcase_08 AC 102 ms
77,260 KB
testcase_09 AC 101 ms
77,324 KB
testcase_10 AC 101 ms
77,200 KB
testcase_11 AC 103 ms
77,596 KB
testcase_12 AC 100 ms
77,368 KB
testcase_13 AC 114 ms
77,712 KB
testcase_14 AC 114 ms
77,480 KB
testcase_15 AC 115 ms
77,504 KB
testcase_16 AC 119 ms
78,292 KB
testcase_17 AC 113 ms
77,724 KB
testcase_18 AC 118 ms
77,528 KB
testcase_19 AC 117 ms
77,736 KB
testcase_20 AC 123 ms
77,872 KB
testcase_21 AC 123 ms
77,540 KB
testcase_22 AC 116 ms
77,524 KB
testcase_23 AC 115 ms
78,060 KB
testcase_24 AC 115 ms
77,760 KB
testcase_25 AC 120 ms
77,712 KB
testcase_26 AC 116 ms
77,528 KB
testcase_27 AC 115 ms
77,816 KB
testcase_28 AC 117 ms
77,704 KB
testcase_29 AC 115 ms
77,840 KB
testcase_30 AC 115 ms
78,264 KB
testcase_31 WA -
testcase_32 AC 117 ms
77,740 KB
testcase_33 AC 75 ms
72,040 KB
testcase_34 AC 100 ms
76,988 KB
testcase_35 AC 111 ms
77,000 KB
testcase_36 AC 94 ms
76,836 KB
testcase_37 AC 57 ms
65,068 KB
testcase_38 AC 96 ms
77,184 KB
testcase_39 AC 98 ms
77,084 KB
testcase_40 AC 106 ms
77,492 KB
testcase_41 AC 53 ms
63,876 KB
testcase_42 AC 101 ms
77,020 KB
testcase_43 AC 110 ms
77,280 KB
testcase_44 AC 109 ms
77,260 KB
testcase_45 AC 95 ms
77,360 KB
testcase_46 AC 98 ms
77,100 KB
testcase_47 AC 110 ms
77,260 KB
testcase_48 AC 100 ms
77,076 KB
testcase_49 AC 107 ms
77,040 KB
testcase_50 AC 105 ms
77,256 KB
testcase_51 AC 68 ms
70,192 KB
testcase_52 AC 103 ms
77,228 KB
testcase_53 AC 44 ms
55,496 KB
testcase_54 AC 44 ms
54,708 KB
testcase_55 AC 45 ms
55,948 KB
testcase_56 AC 44 ms
54,880 KB
testcase_57 AC 44 ms
55,112 KB
testcase_58 WA -
testcase_59 AC 44 ms
54,920 KB
testcase_60 WA -
testcase_61 AC 45 ms
55,200 KB
testcase_62 WA -
testcase_63 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
deg=[(0,1),(1,0),(1,1),(-1,1)]
H,W=map(int,input().split())
A=[list(map(int,input().split())) for i in range(H)]
beam=[]
for i in range(W+1):
    for xd,yd in deg:
        x=i
        y=0
        x+=xd
        y+=yd
        now=0
        while 1<=x<=W and 1<=y<=H:
            now+=A[y-1][x-1]
            x+=xd
            y+=yd
        if now!=0:
            beam.append((now,i,0,xd,yd))
for i in range(H+1):
    for xd,yd in deg:
        x=0
        y=i
        x+=xd
        y+=yd
        now=0
        while 1<=x<=W and 1<=y<=H:
            now+=A[y-1][x-1]
            x+=xd
            y+=yd
        if now!=0:
            beam.append((now,0,i,xd,yd))
ap=deepcopy(A)
beam.sort(reverse=True)
ans1=0
for p in range(min(len(beam),10)):
    A=deepcopy(ap)
    x=beam[p][1]
    y=beam[p][2]
    xd=beam[p][3]
    yd=beam[p][4]
    x+=xd
    y+=yd
    ans=beam[p][0]
    while 1<=x<=W and 1<=y<=H:
        A[y-1][x-1]=0
        x+=xd
        y+=yd
    maxi=0
    for i in range(W+1):
        for xd,yd in deg:
            x=i
            y=0
            x+=xd
            y+=yd
            now=0
            while 1<=x<=W and 1<=y<=H:
                now+=A[y-1][x-1]
                x+=xd
                y+=yd
            maxi=max(maxi,now)
    for i in range(H+1):
        for xd,yd in deg:
            x=0
            y=i
            x+=xd
            y+=yd
            now=0
            while 1<=x<=W and 1<=y<=H:
                now+=A[y-1][x-1]
                x+=xd
                y+=yd
            maxi=max(maxi,now)
    ans1=max(ans1,ans+maxi)
print(ans1)
0