結果

問題 No.331 CodeRunnerでやれ
ユーザー maimai
提出日時 2016-05-27 12:31:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 323 ms / 5,000 ms
コード長 3,771 bytes
コンパイル時間 2,027 ms
コンパイル使用メモリ 192,592 KB
実行使用メモリ 24,396 KB
平均クエリ数 358.47
最終ジャッジ日時 2023-09-23 23:57:42
合計ジャッジ時間 7,608 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
23,688 KB
testcase_01 AC 131 ms
23,676 KB
testcase_02 AC 151 ms
23,848 KB
testcase_03 AC 170 ms
23,452 KB
testcase_04 AC 155 ms
23,460 KB
testcase_05 AC 159 ms
24,384 KB
testcase_06 AC 181 ms
24,384 KB
testcase_07 AC 238 ms
24,396 KB
testcase_08 AC 210 ms
23,668 KB
testcase_09 AC 275 ms
23,452 KB
testcase_10 AC 206 ms
23,656 KB
testcase_11 AC 212 ms
23,548 KB
testcase_12 AC 265 ms
23,856 KB
testcase_13 AC 217 ms
24,084 KB
testcase_14 AC 267 ms
23,544 KB
testcase_15 AC 290 ms
24,016 KB
testcase_16 AC 323 ms
24,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long int ll;

vector<vector<int>> swapper;

int turnTableRX[3][3]={{0,0,0},{1,0,-1},{0,0,0}};
int turnTableRY[3][3]={{0,-1,0},{0,0,0},{0,1,0}};

int vx=0,vy=1;
int px=0,py=0;
bool target=false;
int tx,ty;
map<pair<int,int>,int> field;

void print(){
    int x,y;
    for (y=-1;y<5;y++){
        for (x=-3;x<3;x++){
            pair<int,int> p=make_pair(x,y);
            if (px==x&&py==y) cout<<"[";else cout<<" ";
            if (field.count(p)){
                cout << field[p];
            }else{
                cout << "?";
            }

            if (px==x&&py==y) cout<<"]";else cout<<" ";
        }
        cout<<endl;
    }
}

inline bool moveable(int x,int y){
    pair<int,int> p=make_pair(x,y);
    return field.count(p) && field[p];
}

inline void turnLeft(){
    int x=vx,y=vy;
    vx=-turnTableRX[x+1][y+1];
    vy=-turnTableRY[x+1][y+1];
}
inline void turnRight(){
    int x=vx,y=vy;
    vx=turnTableRX[x+1][y+1];
    vy=turnTableRY[x+1][y+1];
}

inline bool isKnown(int x,int y){
    return field.count(make_pair(x+1,y)) 
        && field.count(make_pair(x-1,y)) 
        && field.count(make_pair(x,y+1)) 
        && field.count(make_pair(x,y-1)) ;
}

void finalAction(){
    int l;string buff;
    do{
        cout<<"F"<<endl;
        cin >> buff;
    }while(buff[0]!='M');
    exit(0);
}

void check(){
    int l,i;
    if (scanf("%d",&l)<=0) exit(0);
    if (l==20151224) finalAction();
    for (i=1;i<=l;i++){
        field[make_pair(px+vx*i,py+vy*i)]=1;
    }
    field[make_pair(px+vx*i,py+vy*i)]=0;
}

void action(){
    int b;
    if (target){
        // 使ってない
    }else{
        if (isKnown(px,py)){
            map<pair<int,int>,bool> dp;
            queue<vector<int>> q;
            if (moveable(px-1,py)) q.push(vector<int>{px-1,py,-1,0});
            if (moveable(px+1,py)) q.push(vector<int>{px+1,py,1,0});
            if (moveable(px,py-1)) q.push(vector<int>{px,py-1,0,-1});
            if (moveable(px,py+1)) q.push(vector<int>{px,py+1,0,1});
            while (!q.empty()){
                vector<int> &v=q.front();
                dp[make_pair(v[0],v[1])]=true;
                if (isKnown(v[0],v[1])){
                    if (!dp.count(make_pair(v[0]+1,v[1]))
                        && moveable(v[0]+1,v[1])) q.push(vector<int>{v[0]+1,v[1],v[2],v[3]});
                    if (!dp.count(make_pair(v[0]-1,v[1]))
                        && moveable(v[0]-1,v[1])) q.push(vector<int>{v[0]-1,v[1],v[2],v[3]});
                    if (!dp.count(make_pair(v[0],v[1]+1))
                        && moveable(v[0],v[1]+1)) q.push(vector<int>{v[0],v[1]+1,v[2],v[3]});
                    if (!dp.count(make_pair(v[0],v[1]-1))
                        && moveable(v[0],v[1]-1)) q.push(vector<int>{v[0],v[1]-1,v[2],v[3]});
                }else{
                    // target=true;
                    // tx=v[0];ty=v[1];
                    // action();
                    if (v[2]==vx && v[3]==vy){
                        cout<<"F"<<endl;
                        px+=vx;py+=vy;
                    }else{
                        if (turnTableRX[vx+1][vy+1]==v[2] && turnTableRX[vx+1][vy+1]==v[3]){
                            cout<<"R"<<endl;
                            turnRight();
                        }else{
                            cout<<"L"<<endl;
                            turnLeft();
                        }
                    }
                    break;
                }
                q.pop();
            }
        }else{
            cout<<"R"<<endl;
            turnRight();
        }
    }
}

int main(){
    
    field[make_pair(0,0)]=1;
    
    while (true){
        check();
        action();
        //print();
    }
    
    return 0;
}
0