# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
996431 | yanb | Snake Escaping (JOI18_snake_escaping) | C++14 | 2009 ms | 23816 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<long long, long long>
#define t3i tuple<long long, long long, long long>
const int MinVop = 10;
int calc(vector<int> &tri, int x, int l, string &tox) {
if (l == x) {
int v = 0;
for (int i = 0; i < l; i++) {
v *= 2;
v += tri[i];
}
return tox[v] - '0';
}
if (tri[x] == 2) {
int ans = 0;
tri[x] = 0;
ans += calc(tri, x + 1, l, tox);
tri[x] = 1;
ans += calc(tri, x + 1, l, tox);
tri[x] = 2;
return ans;
}
return calc(tri, x + 1, l, tox);
}
# | 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... |