結果

問題 No.5019 Hakai Project
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-11-17 13:19:27
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 16 ms / 3,000 ms
コード長 1,550 bytes
コンパイル時間 3,181 ms
コンパイル使用メモリ 260,428 KB
実行使用メモリ 6,676 KB
スコア 9,148
最終ジャッジ日時 2023-11-17 13:19:39
合計ジャッジ時間 11,272 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
6,676 KB
testcase_01 AC 14 ms
6,676 KB
testcase_02 AC 14 ms
6,676 KB
testcase_03 AC 14 ms
6,676 KB
testcase_04 AC 15 ms
6,676 KB
testcase_05 AC 14 ms
6,676 KB
testcase_06 AC 14 ms
6,676 KB
testcase_07 AC 14 ms
6,676 KB
testcase_08 AC 14 ms
6,676 KB
testcase_09 AC 15 ms
6,676 KB
testcase_10 AC 15 ms
6,676 KB
testcase_11 AC 14 ms
6,676 KB
testcase_12 AC 14 ms
6,676 KB
testcase_13 AC 14 ms
6,676 KB
testcase_14 AC 15 ms
6,676 KB
testcase_15 AC 14 ms
6,676 KB
testcase_16 AC 14 ms
6,676 KB
testcase_17 AC 15 ms
6,676 KB
testcase_18 AC 15 ms
6,676 KB
testcase_19 AC 16 ms
6,676 KB
testcase_20 AC 15 ms
6,676 KB
testcase_21 AC 14 ms
6,676 KB
testcase_22 AC 15 ms
6,676 KB
testcase_23 AC 15 ms
6,676 KB
testcase_24 AC 15 ms
6,676 KB
testcase_25 AC 14 ms
6,676 KB
testcase_26 AC 14 ms
6,676 KB
testcase_27 AC 15 ms
6,676 KB
testcase_28 AC 14 ms
6,676 KB
testcase_29 AC 14 ms
6,676 KB
testcase_30 AC 14 ms
6,676 KB
testcase_31 AC 14 ms
6,676 KB
testcase_32 AC 14 ms
6,676 KB
testcase_33 AC 15 ms
6,676 KB
testcase_34 AC 14 ms
6,676 KB
testcase_35 AC 14 ms
6,676 KB
testcase_36 AC 14 ms
6,676 KB
testcase_37 AC 14 ms
6,676 KB
testcase_38 AC 14 ms
6,676 KB
testcase_39 AC 15 ms
6,676 KB
testcase_40 AC 14 ms
6,676 KB
testcase_41 AC 14 ms
6,676 KB
testcase_42 AC 15 ms
6,676 KB
testcase_43 AC 15 ms
6,676 KB
testcase_44 AC 14 ms
6,676 KB
testcase_45 AC 14 ms
6,676 KB
testcase_46 AC 15 ms
6,676 KB
testcase_47 AC 15 ms
6,676 KB
testcase_48 AC 14 ms
6,676 KB
testcase_49 AC 15 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    int N,M;
    cin>>N>>M;
    vector<string> A(N);
    for(int i=0; i<N; i++){
        cin>>A[i];
    }
    vector<pair<int,vector<pair<int,int>>>> bomb(M);
    for(int i=0; i<M; i++){
        int C,L;
        cin>>C>>L;
        bomb[i].first=C;
        for(int j=0; j<L; j++){
            int a,b;
            cin>>a>>b;
            bomb[i].second.push_back(make_pair(a,b));
        }
    }
    int x=-1,y=-1;
    for(int i=0; i<N; i++){
        for(int j=0; j<N; j++){
            if(A[i][j]=='@'){
                x=i;
                y=j;
                break;
            }
        }
        if(x!=-1)break;
    }
    vector<pair<int,string>> ans;
    for(int i=0; i<x; i++){
        ans.push_back(make_pair(1,"D"));
    }
    for(int i=0; i<y; i++){
        ans.push_back(make_pair(1,"R"));
    }
    for(int i=0; i<N*N; i++){
        ans.push_back(make_pair(2,to_string(1)));
    }
    for(int i=0; i<x; i++){
        ans.push_back(make_pair(1,"U"));
    }
    for(int i=0; i<y; i++){
        ans.push_back(make_pair(1,"L"));
    }
    for(int i=0; i<N; i++){
        for(int j=0; j<N; j++){
            ans.push_back(make_pair(3,to_string(1)));
            if(i==N-1&&j==N-1)break;
            else if(j==N-1)ans.push_back(make_pair(1,"D"));
            else if(i%2==0)ans.push_back(make_pair(1,"R"));
            else ans.push_back(make_pair(1,"L"));
        }
    }
    cout<<ans.size()<<endl;
    for(pair<int,string> i:ans){
        cout<<i.first<<" "<<i.second<<endl;
    }
}
0