# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
642727 | TimDee | Brperm (RMI20_brperm) | C++17 | 124 ms | 6512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "brperm.h"
#include <bits/stdc++.h>
using namespace std;
string S;
void init(int n, const char s[]) {
for (int i=0; i<n; ++i) S.push_back(s[i]);
}
int query(int ind, int k) {
//++k;
for (int i=ind; i<ind+(1ll<<k); ++i) {
int j=0;
for (int b=0; b<k; ++b) {
j+=(((i-ind)>>b)&1)<<(k-1-b);
}
//cout<<i<<' '<<j<<'\n';
if ((j+ind>=S.length()) || (i>>S.length())) return 0;
if (S[i]!=S[j+ind]) return false;
}
return true;
}
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int rand(int a, int b) {
return a+(rng()%(b-a+1));
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |