結果

問題 No.5019 Hakai Project
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-10-07 08:00:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 808 ms / 3,000 ms
コード長 1,768 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 77,812 KB
スコア 579,101,097
最終ジャッジ日時 2023-11-17 09:31:46
合計ジャッジ時間 40,668 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 735 ms
76,784 KB
testcase_01 AC 664 ms
76,784 KB
testcase_02 AC 692 ms
76,784 KB
testcase_03 AC 596 ms
76,912 KB
testcase_04 AC 760 ms
77,168 KB
testcase_05 AC 684 ms
76,784 KB
testcase_06 AC 615 ms
76,784 KB
testcase_07 AC 808 ms
77,812 KB
testcase_08 AC 680 ms
76,656 KB
testcase_09 AC 679 ms
76,912 KB
testcase_10 AC 649 ms
76,784 KB
testcase_11 AC 661 ms
76,912 KB
testcase_12 AC 796 ms
77,812 KB
testcase_13 AC 643 ms
77,296 KB
testcase_14 AC 733 ms
77,168 KB
testcase_15 AC 658 ms
76,784 KB
testcase_16 AC 703 ms
76,656 KB
testcase_17 AC 661 ms
76,912 KB
testcase_18 AC 728 ms
76,656 KB
testcase_19 AC 770 ms
77,168 KB
testcase_20 AC 731 ms
76,784 KB
testcase_21 AC 597 ms
76,784 KB
testcase_22 AC 681 ms
76,912 KB
testcase_23 AC 648 ms
76,784 KB
testcase_24 AC 757 ms
76,912 KB
testcase_25 AC 658 ms
76,784 KB
testcase_26 AC 715 ms
76,656 KB
testcase_27 AC 633 ms
76,784 KB
testcase_28 AC 652 ms
77,424 KB
testcase_29 AC 573 ms
76,912 KB
testcase_30 AC 690 ms
76,656 KB
testcase_31 AC 730 ms
77,552 KB
testcase_32 AC 750 ms
77,296 KB
testcase_33 AC 703 ms
76,784 KB
testcase_34 AC 669 ms
76,656 KB
testcase_35 AC 664 ms
76,784 KB
testcase_36 AC 699 ms
76,656 KB
testcase_37 AC 697 ms
77,296 KB
testcase_38 AC 623 ms
76,656 KB
testcase_39 AC 670 ms
76,784 KB
testcase_40 AC 756 ms
76,784 KB
testcase_41 AC 713 ms
76,784 KB
testcase_42 AC 749 ms
77,296 KB
testcase_43 AC 733 ms
76,912 KB
testcase_44 AC 697 ms
76,784 KB
testcase_45 AC 686 ms
76,784 KB
testcase_46 AC 663 ms
76,784 KB
testcase_47 AC 715 ms
76,784 KB
testcase_48 AC 689 ms
77,168 KB
testcase_49 AC 769 ms
76,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=[]
for i in range(N):
    A.append(list(input()))
bomb=[]
maxi=0
num=0
for i in range(M):
    C,L=map(int,input().split())
    bomb.append([C,[]])
    if maxi<L:
        maxi=L
        num=i
    for j in range(L):
        bomb[-1][-1].append(tuple(map(int,input().split())))
x=-1
y=-1
near=998244353
for i in range(N):
    for j in range(N):
        if A[i][j]=="@":
            if near>i+j:
                near=i+j
                x=i
                y=j
use=[]
while True:
    maxi=0
    xp=-1
    yp=-1
    for i in range(N):
        for j in range(N):
            cnt=0
            for k,l in bomb[num][1]:
                if 0<=i+k<N and 0<=j+l<N:
                    if A[i+k][j+l]!=".":
                        cnt+=1
            if cnt>maxi:
                maxi=cnt
                xp=i
                yp=j
    if xp==-1:
        break
    use.append((xp,yp))
    for k,l in bomb[num][1]:
        if 0<=xp+k<N and 0<=yp+l<N:
            A[xp+k][yp+l]="."
ans=[]
for i in range(x):
    ans.append([1,"D"])
for i in range(y):
    ans.append([1,"R"])
for i in range(len(use)):
    ans.append([2,num+1])
used=set()
for i in range(len(use)):
    go=-1
    near=998244353
    for j in range(len(use)):
        if j in used:
            continue
        if near>abs(x-use[j][0])+abs(y-use[j][1]):
            near=abs(x-use[j][0])+abs(y-use[j][1])
            go=j
    for i in range(use[go][0]-x):
        ans.append([1,"D"])
    for i in range(x-use[go][0]):
        ans.append([1,"U"])
    for i in range(use[go][1]-y):
        ans.append([1,"R"])
    for i in range(y-use[go][1]):
        ans.append([1,"L"])
    x=use[go][0]
    y=use[go][1]
    ans.append([3,num+1])
    used.add(go)
print(len(ans))
for i in ans:
    print(*i)
0