# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1066720 | irmuun | 로봇 대회 (IOI23_robot) | C++17 | 116 ms | 5980 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "robot.h"
using namespace std;
#define ll long long
#define pb push_back
#define ff first
#define ss second
#define all(s) s.begin(),s.end()
#define rall(s) s.rbegin(),s.rend()
//west-zuun
//south-dood
//east-baruun
//north-deed
string s="TWSEN";
void program_pulibot(){
vector<int>v(5);
for(v[0]=0;v[0]<=5;v[0]++){
for(v[1]=-2;v[1]<=5;v[1]++){
for(v[2]=-2;v[2]<=5;v[2]++){
for(v[3]=-2;v[3]<=5;v[3]++){
for(v[4]=-2;v[4]<=5;v[4]++){
if(v[2]==-2&&v[3]==-2){//at RD corner
if(v[1]==3){
set_instruction(v,1,'W');
}
else if(v[4]==2){
set_instruction(v,1,'N');
}
continue;
}
if(v[2]==1||v[3]==1){
if(v[1]==-2&&v[4]==-1){
set_instruction(v,1,'T');
}
else if(v[1]==3){
set_instruction(v,1,'W');
}
else if(v[4]==2){
set_instruction(v,1,'N');
}
continue;
}
//finding path
if(v[0]==0){
if(v[2]==0){
set_instruction(v,2,'S');
}
else if(v[3]==0){
set_instruction(v,3,'E');
}
else{//back
if(v[1]==3){
set_instruction(v,5,'W');
}
else if(v[4]==2){
set_instruction(v,4,'N');
}
}
continue;
}
if(v[0]==2){
if(v[3]==0){
set_instruction(v,3,'E');
}
else{
if(v[1]==3){
set_instruction(v,5,'W');
}
else if(v[4]==2){
set_instruction(v,4,'N');
}
}
continue;
}
if(v[0]==3){
if(v[1]==3){
set_instruction(v,5,'W');
}
else if(v[4]==2){
set_instruction(v,4,'N');
}
continue;
}
}
}
}
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |