제출 #1073494

#제출 시각아이디문제언어결과실행 시간메모리
1073494OspleiMini tetris (IOI16_tetris)C++17
0 / 100
1 ms348 KiB
#include "tetris.h"
#include <bits/stdc++.h>
 
using namespace std;
 
typedef pair<int,int> ii;
typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<ii> vii; 
typedef vector<vii> wgraf;
typedef pair<int,ii> edge;
typedef vector <ll> vl;
typedef pair <ll, ll> LL;
typedef vector <LL> vll;
 
#define UNVISITED 0
#define VISITED 1
#define pb push_back
#define F first
#define S second

void init(int n) {
}

ll pos = 0, rot = 0, cnt = 0;

void new_figure(int figure_type) {
  if ((cnt % 3) & 1) {
    pos = 0;
    rot = 0;
  } else {
    pos = 2;
    rot = 1;
  }
}

int get_position() {
	return pos;
}

int get_rotation() {
	return rot;
}
#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...