結果

問題 No.5019 Hakai Project
ユーザー かえでかえで
提出日時 2023-11-19 11:25:36
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 3,000 ms
コード長 4,450 bytes
コンパイル時間 2,558 ms
コンパイル使用メモリ 202,648 KB
実行使用メモリ 6,676 KB
スコア 18,363,263
最終ジャッジ日時 2023-11-19 11:25:45
合計ジャッジ時間 8,761 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream> // cout, endl, cin
#include <string> // string, to_string, stoi
#include <vector> // vector
#include <algorithm> // min, max, swap, sort, reverse, lower_bound, upper_bound
#include <utility> // pair, make_pair
#include <tuple> // tuple, make_tuple
#include <cstdint> // int64_t, int*_t
#include <cstdio> // printf
#include <map> // map
#include <queue> // queue, priority_queue
#include <set> // set
#include <stack> // stack
#include <deque> // deque
#include <unordered_map> // unordered_map
#include <unordered_set> // unordered_set
#include <bitset> // bitset
#include <cctype> // isupper, islower, isdigit, toupper, tolower
#include <iomanip>//fixed,setprecision
#include <limits.h>//INT_MAX
#include <math.h>//M_PI
#include <random>
#include <regex> // 正規表現
#include <time.h>
#include <fstream>
#include <array>
#include <bit>
#include <chrono>
#include <ranges>
#include <span>
#include <cmath>
#include <cstdint>
#include <complex>//複素数
//#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
template < typename T > std::string to_string( const T& n ){std::ostringstream stm ;stm << n ;return stm.str() ;}
int N,M;
vector<string> A;
vector<pair<int,vector<pair<int,int>>>> bomb;
vector<pair<int,string>> ans;
vector<pair<int,int>>tatemono;
vector<pair<int,int>>bakudanya;
void input(){
    cin>>N>>M;
    A.resize(N);
    for(int i=0; i<N; i++){
        cin>>A[i];
    }
    bomb.resize(M);
    for(int i=0; i<M; i++){
        int C,L;
        cin>>C>>L;
        bomb[i].first=C;//first:Cost 
        int chikai=2500;
        for(int j=0; j<L; j++){
            int a,b;
            cin>>a>>b;
            bomb[i].second.push_back(make_pair(a,b));//second.first:壊せるマスのiからのx方向距離 second.second: y方向距離 
        }
    }
}
void bakuha(int i,int j,int num){
    //cerr<<bomb[num].second.size()<<" ";
    rep(ni,bomb[num].second.size()){
        int x=i+bomb[num].second[ni].first;
        int y=j+bomb[num].second[ni].second;
        //cerr<<x<<" "<<y<<endl;
        if(x<0||x>=N||y<0||y>=N)continue;
        //cerr<<"a";
        A[x][y]='.';
    }
}
void mukau(int sx,int sy,int gx,int gy){
    if(sx<gx){
        rep(i,gx-sx)ans.push_back(make_pair(1,"D"));
    }
    if(gx<sx){
        rep(i,sx-gx)ans.push_back(make_pair(1,"U"));
    }
    if(sy<gy){
        rep(j,gy-sy)ans.push_back(make_pair(1,"R"));
    }
    if(gy<sy){
        rep(j,sy-gy)ans.push_back(make_pair(1,"L"));
    }
}
//建物を爆破できるいちばん近い場所に移動する
pair<int,int> ido(int nowx,int nowy,int bakuhax,int bakuhay,int num){
    int kyori=2500;
    int gx=10000;
    int gy=10000;
    rep(ni,bomb[num].second.size()){
        int x=bakuhax-bomb[num].second[ni].first;
        int y=bakuhay-bomb[num].second[ni].second;
        //cerr<<x<<" "<<y<<endl;
        if(x<0||x>=N||y<0||y>=N)continue;
        if(abs(x-nowx)+abs(y-nowy)<kyori){
            gx=x;
            gy=y;
            kyori=abs(x-nowx)+abs(y-nowy);
        }
    }    
    //cerr<<nowx<<" "<<nowy<<" "<<gx<<" "<<gy<<endl;
    return make_pair(gx,gy);
}
int main(){
    input();
    int building_cnt=0;
    rep(i,N)rep(j,N){
        if(A[i][j]=='#')tatemono.emplace_back(i,j);
        if(A[i][j]=='@')bakudanya.emplace_back(i,j);
    }
    int x=bakudanya[0].first;
    int y=bakudanya[0].second;
    //爆弾のある地点に行く
    mukau(0,0,x,y);
    ans.push_back(make_pair(2,to_string(1)));//爆弾を買う
    //建物のある地点に行く
    int cnt=0;
    rep(i,N)rep(j,N){
        int nx=i;
        int ny=j;
        if(A[nx][ny]=='#'||A[nx][ny]=='@'){
            pair<int,int>p=ido(x,y,nx,ny,0);
            int ni=p.first;
            int nj=p.second;
            //if(nx<0||nx>=N||ny<0||ny>=N)continue;
            mukau(x,y,ni,nj);
            x=ni;y=nj;
            cnt++;
            ans.push_back(make_pair(3,to_string(1)));
            //cerr<<x<<" "<<y<<endl;
            bakuha(x,y,0);
            if(cnt==2){

                rep(i,N){
                    rep(j,N)cerr<<A[i][j];
                    cerr<<endl;
                }
                cerr<<endl;
            }

        }
    }
    cout<<ans.size()+cnt-1<<endl;
    for(pair<int,string> i:ans){
        if(i.first==2){
            rep(j,cnt)cout<<i.first<<" "<<i.second<<endl;

        }else{
            cout<<i.first<<" "<<i.second<<endl;
        }
    }
}
0