# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
656554 | definitelynotmee | 질문 (CEOI14_question_grader) | C++98 | 4101 ms | 24112 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define mp make_pair
#define mt make_tuple
#define all(x) x.begin(), x.end()
#define ff first
#define ss second
using namespace std;
template <typename T>
using matrix = vector<vector<T>>;
typedef unsigned int uint;
typedef unsigned long long ull;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
const ll INFL = (1LL<<62)-1;
const int INF = (1<<30)-1;
const double EPS = 1e-7;
const int MOD = 1e9 + 7;
const int RANDOM = chrono::high_resolution_clock::now().time_since_epoch().count();
const int MAXN = 1e6+1;
vector<int> v;
int encode (int n, int x, int y) {
if(v.size() == 0){
v.resize(n+1);
int val = (1<<6)-1;
for(int i = 1; i <= n; i++){
int id = 0;
while(__builtin_popcount(val) != 6){
val|=1<<id;
id++;
}
v[i] = val;
val+=1<<__builtin_ctz(val);
}
}
for(int i = 0; i < 12; i++){
if(bool(v[x]&(1<<i)) && !bool(v[y]&(1<<i)))
return i+1;
}
}
#include<bits/stdc++.h>
using namespace std;
vector<int> v;
int decode (int n, int q, int h) {
h--;
if(v.size() == 0){
v.resize(n+1);
int val = (1<<6)-1;
for(int i = 1; i <= n; i++){
int id = 0;
while(__builtin_popcount(val) != 6){
val|=1<<id;
id++;
}
v[i] = val;
val+=1<<__builtin_ctz(val);
}
}
return bool(v[q]&(1<<h));
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |