# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
589726 | 2022-07-05T08:01:27 Z | Tekor | Super Dango Maker (JOI22_dango3) | C++17 | 3611 ms | 176252 KB |
#include "dango3.h" #include <vector> namespace { int variable_example = 1; } // namespace #include <bits/stdc++.h> using namespace std; #define pb push_back const int K = 1e4 + 10; bool ban[K]; vector <int> dob; int check(int l,int r,int n) { vector <int> zap; for(int i = l;i <= r;i++) { if(ban[i])continue; zap.pb(i); } for(auto to : dob)zap.pb(to); if(zap.size() < n)return 0; cout <<"? "; for(auto to : zap) { cout << to << " "; } cout << " from "; for(auto to : dob) { cout << to << " "; } cout << endl; return Query(zap); } /* 3 2 3 3 1 2 1 2 */ void Solve(int n,int m) { for(int i = 1;i <= n * m;i++)ban[i] = 0; queue <int> q; for(int it = 1;it <= m;it++) { int fir = -1; if(!q.empty()) { fir = q.front(); q.pop(); }else { for(int l = 1;l <= n * m;l++) { if(!ban[l]) { fir = l; break; } } } dob.clear(); dob.pb(fir); ban[fir] = 1; int last = fir; for(int i = 2;i <= n;i++) { int l = last + 2,r = n * m,ans = n * m + 1; while(l <= r) { int mid = (l + r) / 2; int dd = check(mid,n * m,n); if(dd > 1 && !ban[mid]) { q.push(mid); } if(dd == 0) { ans = mid; r = mid - 1; }else { l = mid + 1; } } dob.pb(ans - 1); ban[ans - 1] = 1; last = ans - 1; } Answer(dob); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 340 KB | Do not print anything to standard output |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 104 ms | 3672 KB | Do not print anything to standard output |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1730 ms | 78468 KB | Do not print anything to standard output |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3611 ms | 176252 KB | File size exceeds 134217728 bytes, size is 174889524 |
2 | Halted | 0 ms | 0 KB | - |