# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
589672 | LastRonin | Super Dango Maker (JOI22_dango3) | C++17 | 4067 ms | 668 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dango3.h"
#include <bits/stdc++.h>
#include <vector>
#define pb push_back
using namespace std;
mt19937_64 bruh(chrono::steady_clock::now().time_since_epoch().count());
namespace {
int variable_example = 1;
} // namespace
void Solve(int N, int M) {
vector<int> x;
for(int i = 0; i < N; i++) {
for(int j = 0; j < M; j++) {
x.pb(M * i + j + 1);
}
}
int kek = 0;
vector<int> y;
while(kek < M) {
shuffle(x.begin(), x.end(), bruh);
int za = Query(x);
int f = x.size();
vector<int> ans;
if(kek <= 25) {
ans.pb(x.back());
x.pop_back();
for(int j = f - 2; j >= 0; j--) {
vector<int> z;
for(auto u : y)z.pb(u);
int mem = x.back();
x.pop_back();
for(auto u : x) z.pb(u);
int answ = Query(z);
if(answ == za - 2) y.pb(mem);
else ans.pb(mem);
}
x = y;
y.clear();
}
else {
}
kek++;
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... |