# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
941647 | Pannda | Super Dango Maker (JOI22_dango3) | C++17 | 191 ms | 860 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dango3.h"
#include <bits/stdc++.h>
using namespace std;
void Solve(int n, int m) {
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
auto query = [&](vector<int> x) -> int {
for (int &i : x) i++;
return Query(x);
};
auto answer = [&](vector<int> x) -> void {
for (int &i : x) i++;
Answer(x);
};
vector<int> rem(n * m);
iota(rem.begin(), rem.end(), 0);
for (int t = 0; t < m; t++) {
shuffle(rem.begin(), rem.end(), rng);
int l = n, r = rem.size();
while (l < r) {
int m = (l + r) >> 1;
if (query(vector<int>(rem.begin(), rem.begin() + m)) > 0) {
r = m;
} else {
l = m + 1;
}
}
int C = l;
vector<int> f(rem.begin(), rem.begin() + C);
int cur = query(f);
vector<int> new_rem(rem.begin() + C, rem.end());
while (f.size() > n) {
int i = f.back();
f.pop_back();
int nxt = query(f);
if (nxt == 0) {
f.insert(f.begin(), i);
} else {
new_rem.push_back(i);
}
}
rem = new_rem;
answer(f);
}
}
컴파일 시 표준 에러 (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... |