# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
396724 | rqi | Snake Escaping (JOI18_snake_escaping) | C++14 | 413 ms | 57572 KiB |
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 <bits/stdc++.h>
using namespace std;
#define all(x) begin(x), end(x)
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template<class T> using Tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
const int mx = 1000005;
int L, Q;
string S;
string T[mx];
int three_pow[15];
int three_sub[1594323];
void smallL(){
three_pow[0] = 1;
for(int i = 1; i <= L; i++){
three_pow[i] = three_pow[i-1]*3;
}
for(int i = 0; i < three_pow[L]; i++){
int sub = i;
int sum = 0;
for(int j = 0; j < L; j++){
if(sub % 3 == 2){
//cout << i << " " << i-2*three_pow[j] << " " << i-1*three_pow[j] << "\n";
three_sub[i] = three_sub[i-2*three_pow[j]]+three_sub[i-1*three_pow[j]];
sum = -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... |