This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "Memory_lib.h"
#define N 101
int min(int a, int b) { return a < b ? a : b; }
int code(char c) {
if (c == '<')
return 0;
if (c == '>')
return 1;
if (c == '[')
return 2;
return 3;
}
int Memory(int n, int x) {
int i, c, c_, d_, d, a, a_;
if (x == 0)
return ((0 * N + 0) * N + 0) * 4 + 1;
c_ = x / 4 / N / N, i = x / 4 / N % N, d_ = x / 4 % N, a_ = x % 4;
if (c_ >= N || i >= n)
return -2;
a = code(Get(i + 1)), d = d_ + ((a & 1) == 0 ? 1 : -1);
if (d < 0)
return -2;
c = min(d_, d), d_ = d;
if (c == c_) {
if ((a_ & 1) != 0 && (a & 1) != 0 || (a_ & 1) == 0 && (a ^ a_) != 1)
return -2;
a_ = a;
}
if (i + 1 < n)
return ((c_ * N + (i + 1)) * N + d_) * 4 + a_;
else {
if (d != 0 || (a_ & 1) == 0)
return -2;
if (c_ + 1 == N)
return -1;
return (((c_ + 1) * N + 0) * N + 0) * 4 + 1;
}
}
Compilation message (stderr)
memory.c: In function 'Memory':
memory.c:30:21: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
30 | if ((a_ & 1) != 0 && (a & 1) != 0 || (a_ & 1) == 0 && (a ^ 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... |