제출 #1011057

#제출 시각아이디문제언어결과실행 시간메모리
1011057aaaaaarroz로봇 대회 (IOI23_robot)C++17
25 / 100
104 ms5740 KiB
	#include "robot.h"
	#include <bits/stdc++.h>
	using namespace std;
	#ifdef LOCAL
	void debug_out() {cerr<<endl;}
	template <typename Head, typename... Tail>
	void debug_out(Head _H, Tail... _T) {cerr<<" "<<to_string(_H);debug_out(_T...);}
	#define debug(...) cerr<<"["<<#__VA_ARGS__<<"]:",debug_out(__VA_ARGS__)
	#else
	#define debug(...)
	#endif
	const int MAXN = -1;
	const int inf=1000000500ll;
	const long long oo =1000000000000000500ll;
	const int MOD = (int)1e9+7;
	mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
	typedef pair<int,int> pi; 
		
	void program_pulibot()
	{
		for(int north=-2;north<=2;north++){
			for(int west=-2;west<=2;west++){
				for(int south=-2;south<=2;south++){
					for(int east=-2;east<=2;east++){
						for(int here=-2;here<=2;here++){
							if(here<0){
								continue;
							}
							int cnt=0;
							if(north==2){
								cnt++;
							}
							if(west==-2){
								cnt++;
							}
							if(south==-2){
								cnt++;
							}
							if(east==-2){
								cnt++;
							}
							if(cnt>2){
								continue;
							}
							if(east == -2 && south == -2){
								set_instruction({here,west,south,east,north},1,'T');
							} else if(east == 0){
								set_instruction({here,west,south,east,north},1,'E');
							} else if(north == 0){
								set_instruction({here,west,south,east,north},1,'N');
							} else if(south == 0){
								set_instruction({here,west,south,east,north},1,'S');
							} else if(west == 0){
								set_instruction({here,west,south,east,north},1,'W');
							} else if(east == 1){
								set_instruction({here,west,south,east,north},2,'E');
							} else if(north == 1){
								set_instruction({here,west,south,east,north},2,'N');
							} else if(south == 1){
								set_instruction({here,west,south,east,north},2,'S');
							} else if(west == 1){
								set_instruction({here,west,south,east,north},2,'W');
							}
						}
					}
					
				}
			}
		}
		
		
	}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...