# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
994943 | NintsiChkhaidze | Library (JOI18_library) | C++17 | 263 ms | 596 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "library.h"
#include <bits/stdc++.h>
#define ll long long
#define ull unsigned long long
using namespace std;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll rnd(ll B) {
return (ull)rng() % B;
}
int n;
void Solve(int N){
n = N;
vector<int> ans(N),fix(N),del(N);
for(int i = 0; i < N; i++) {
ans[i] = fix[i] = 0;
}
int cnt = 0,tot = N;
while (tot > 0){
int k;
while (1){
k = rnd(N);
if (del[k]) continue;
break;
}
tot -= 1;
del[k] = 1;
vector <int> M(N);
for (int i=0;i<N;i++)
M[i] = 1;
M[k] = 0;
int A = 1;
if (N > 1) A = Query(M);
if (A == 1) {
fix[k] = 1;
ans[0] = k;
break;
}
}
for (int i = 0; i + 1 < N; i++){
int find = 0;
for (int j = 0; j < 10; j++){
vector <int> M(N);
int ones=0,sul = 0;
for (int w = 0; w < N; w++){
M[w] = 0;
if (fix[w]) M[w] = 0;
else {
++sul;
int bt = ((w >> j) & 1);
if (bt) M[w] = 1,++ones;
}
}
if (ones == 0) continue;
M[ans[i]] = 1;
int A = Query(M);
M[ans[i]] = 0;
int B = 0;
if (ones > 1 && ones < sul) B = Query(M);
else B = 1;
if (A == B) find |= (1<<j);
}
fix[find] = 1;
ans[i + 1] = find;
}
for (int i=0;i<N;i++)
ans[i] += 1;
Answer(ans);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |