# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
904926 | nguyentunglam | Super Dango Maker (JOI22_dango3) | C++17 | 177 ms | 708 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dango3.h"
#include<bits/stdc++.h>
#include <vector>
using namespace std;
mt19937 rng(1);
void Solve(int n, int m) {
vector<int> p;
for(int i = 1; i <= n * m; i++) p.push_back(i);
for(int group = 1; group <= m; group++) {
shuffle(p.begin(), p.end(), rng);
int l = n, r = p.size(), last = 0;
while (l <= r) {
int mid = l + r >> 1;
vector<int> tmp;
for(int i = 0; i < mid; i++) tmp.push_back(p[i]);
if (Query(tmp)) {
r = mid - 1;
last = mid;
} else l = mid + 1;
}
assert(last);
vector<int> _p, ans;
for(int i = last; i < p.size(); i++) _p.push_back(p[i]);
for(int i = 0; i < last; i++) ans.push_back(p[i]);
for(int i = 0; i < last; i++) {
vector<int> _ans;
for(int &j : ans) if (j != p[i]) _ans.push_back(j);
if (Query(_ans)) {
ans = _ans;
_p.push_back(p[i]);
}
}
p = _p;
Answer(ans);
}
}
컴파일 시 표준 에러 (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... |