# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
102018 | tincamatei | JOIRIS (JOI16_joiris) | C++14 | 27 ms | 460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAX_N = 50;
const int MOVE_LIMIT = 10000;
int a[1+MAX_N+1], dif[1+MAX_N+1];
int top;
int t[MOVE_LIMIT], x[MOVE_LIMIT];
void pushMove(int _t, int _x) {
assert(top < MOVE_LIMIT);
t[top] = _t;
x[top++] = _x;
}
// Horizontal Long bar at i
void solveDif(int n, int k, int i) {
int level = 0;
for(int j = 0; j < k; ++j)
if(a[i + j] > level)
level = a[i + j];
pushMove(2, i);
for(int j = 1; j <= n; ++j)
while((j < i || j >= i + k) && a[j] <= level) {
a[j] += k;
pushMove(1, j);
}
for(int j = 1; j <= n; ++j)
if(j < i || j >= i + k)
a[j]--;
}
int main() {
#ifdef HOME
FILE *fin = fopen("input.in", "r");
FILE *fout = fopen("output.out", "w");
#else
FILE *fin = stdin;
FILE *fout = stdout;
#endif
int n, k;
scanf("%d%d", &n, &k);
for(int i = 1; i <= n; ++i)
scanf("%d", &a[i]);
while(k < n && a[k] % k != a[k + 1] % k)
solveDif(n, k, 1);
for(int i = 1; i <= n - k; ++i) {
while(a[i] % k != a[i + 1] % k)
solveDif(n, k, i + 1);
}
int maxlvl = 0;
for(int i = 1; i <= n; ++i)
if(a[i] > maxlvl)
maxlvl = a[i];
for(int i = 1; i <= n; ++i)
while(a[i] < maxlvl) {
pushMove(1, i);
a[i] += k;
}
int i = 1;
while(i < n && a[i] == a[i + 1])
i++;
if(i == n) {
printf("%d\n", top);
for(int j = 0; j < top; ++j)
printf("%d %d\n", t[j], x[j]);
} else
printf("-1");
fclose(fin);
fclose(fout);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |