이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Memory_lib.h"
#include <bits/stdc++.h>
using namespace std;
int Memory(int N, int M) {
int a = M & ((1<<7)-1); M >>= 7;
int b = M & ((1<<7)-1); M >>= 7;
int c = M & ((1<<6)-1); M >>= 6;
if (M >> 1) {
M &= 1;
if (a == N) return -1;
if (a > N || b >= N || b < a || c > b-a) return -2;
char ch = Get(b+1);
if (a == b) {
if (ch == '<') return (1<<21) | (c<<14) | ((b+1)<<7) | a;
else if (ch == '[') return (3<<20) | (c<<14) | ((b+1)<<7) | a;
else return (1<<21) | (c<<14) | ((b+1)<<7) | (a+1);
}
else {
if (ch == '<' || ch == '[') return (1<<21) | (M<<20) | ((c+1)<<14) | ((b+1)<<7) | a;
if (c > 0) return (1<<21) | (M<<20) | ((c-1)<<14) | ((b+1)<<7) | a;
if (ch == '>' && M == 1) return -2;
if (ch == ']' && M == 0) return -2;
return (1<<21) | ((a+1)<<7) | (a+1);
}
}
else {
if (a > N) return -2;
else if (a == N) {
if (b == 0 && c == 0) return 1<<21;
else return -2;
}
else {
char ch = Get(a+1);
if (ch == '<') b++;
if (ch == '>') b--;
if (ch == '[') c++;
if (ch == ']') c--;
if (b < 0 || c < 0 || b*2 > N || c*2 > N) return -2;
else return (c<<14) | (b<<7) | (a+1);
}
}
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |