이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "tetris.h"
using namespace std;
typedef long long ll;
void init(int n){
}
int position;
int rotation;
int state;
const int dat[6][2][3] = {
/// state 0
/// ...
/// ...
{
0, 0, 1,
0, 0, 2
},
/// state 1
/// ...
/// OO.
{
2, 1, 3,
1, 2, 4
},
/// state 2
/// O..
/// OO.
{
1, 0, 1,
1, 2, 0
},
/// state 3
/// ...
/// ..O
{
0, 0, 0,
0, 0, 5
},
/// state 4
/// ...
/// .OO
{
0, 1, 5,
0, 3, 1
},
/// state 5
/// ...
/// O..
{
1, 0, 0,
1, 1, 3
}
};
void new_figure(int figure_type){
if(figure_type == 1) position = 0, rotation = 0;
else position = dat[state][figure_type-2][0], rotation = dat[state][figure_type-2][1], state = dat[state][figure_type-2][2];
}
int get_position() {
return position;
}
int get_rotation() {
return rotation;
}
# | 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... |