#include <bits/stdc++.h>
#include "brperm.h"
using namespace std;
string str;
void init(int n, const char s[]) {
str = s;
}
int rev_bits(int x, int k){
int ans = 0;
for(int i = 0; i < k; i++){
int bt = (x>>i)&1;
ans += bt*(1<<(k-i-1));
}
return ans;
}
int query(int i, int k){
int len = (1<<k);
string sub = str.substr(i, len);
for(int i = 0; i < len; i++){
if(sub[i] != sub[rev_bits(i, k)]){
return false;
}
}
return true;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
600 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
600 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
9 ms |
3076 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
600 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |