# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
951614 | LittleOrange | Super Dango Maker (JOI22_dango3) | C++17 | 403 ms | 696 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "dango3.h"
#include <vector>
namespace {
int variable_example = 1;
using namespace std;
using ll = int;
} // namespace
void Solve(int N, int M) {
ll nm = N*M;
ll n = N;
vector<ll> a(nm,1);
for(ll round = 0;round<M;round++){
vector<ll> b;
for(ll i = 0;i<nm;i++) if(a[i])b.push_back(i+1);
if (round==M-1){
Answer(b);
return;
}
ll l = n,r=b.size();
while(l<r){
ll m = l+r>>1;
vector<ll> c;
for(ll i = 0;i<m;i++) c.push_back(b[i]);
if(Query(c)>=1){
r = m;
}else{
l = m+1;
}
}
vector<ll> choose(l,1);
ll chcnt = l;
for(ll i = 0;i<l&&chcnt>n;i++){
choose[i] = 0;
vector<ll> c;
for(ll i = 0;i<l;i++) if(choose[i])c.push_back(b[i]);
if(Query(c)==0){
choose[i] = 1;
}else{
chcnt--;
}
}
vector<ll> out;
for(ll i = 0;i<l;i++) if(choose[i]){
out.push_back(b[i]);
a[b[i]-1] = 0;
}
Answer(out);
}
}
Compilation message (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... |