# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
568361 | Trisanu_Das | Mini tetris (IOI16_tetris) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "tetris.h"
#include <bits/stdc++.h>
using namespace std;
void init(int n){}
int st = 0, pos, rot;
int r1[6] = {0, 1, 1, 0, 0, 0}, p1[6] = {0, 2, 0, 0, 1, 1}, n1[6] = {1, 3, 4, 0, 0, 1};
int r2[6] = {0, 2, 3, 0, 1, 2}, p2[6] = {0, 1, 0, 0, 1, 1}, n2[6] = {5, 2, 1, 4, 3, 0};
void new_figure(int type){
if(type == 1){pos = 0; rot = 0;}
if(type == 2){
rot = r1[st];
pos = p1[st];
st = n1[st];
}
if(type == 3){
rot = r2[st];
pos = p2[st];
st = n2[st];
}
}
int get_position() return pos;
int get_rotation() return rotation;