QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#301162 | #7510. Independent Set | defyers | WA | 24ms | 4020kb | C++14 | 4.0kb | 2024-01-09 15:30:24 | 2024-01-09 15:30:25 |
Judging History
answer
#include "bits/stdc++.h"
using namespace std;
using ll = long long;
using LL = long long;
using pii = pair<int, int>;
int n;
vector<int> v;
vector<vector<int>> IS;
vector<int> edge[4005];
int asked;
vector<int> ask(vector<int> &v) {
asked += (int)v.size();
if (asked > 176000) {
while (true) {
asked++;
}
}
cout << "? " << (int)v.size();
for (auto i : v) {
cout << " " << i;
}
cout << "\n";
cout.flush();
vector<int> ans;
for (int i = 0; i < v.size(); i++) {
int tmp;
cin >> tmp;
ans.push_back(tmp);
}
return ans;
}
vector<int> E;
void f(vector<int> &s1, vector<int> &s2, vector<int> &ans) {
if (!s1.size() || !s2.size()) return;
if (s2.size() == 1) {
for (int i = 0; i < s1.size(); i++) {
int num = ans[i];
for (int j = 1; j <= num; j++) {
edge[s1[i]].push_back(s2[0]);
}
}
return;
}
vector<int> h1, h2;
for (int i = 0; i < s2.size(); i++) {
if (i < s2.size() / 2) h1.push_back(s2[i]);
else h2.push_back(s2[i]);
}
vector<int> q;
for (auto i : h1) {
q.push_back(i);
}
for (auto i : s1) {
q.push_back(i);
}
auto t = ask(q);
vector<int> res1, nonzero1;
int p = 0;
for (int i = h1.size(); i < h1.size() + s1.size(); i++) {
ans[p] -= t[i];
if (t[i] > 0) {
res1.push_back(t[i]);
nonzero1.push_back(s1[p]);
}
p++;
}
f(nonzero1, h1, res1);
vector<int> res2, nonzero2;
for (int i = 0; i < ans.size(); i++) {
if (ans[i] > 0) {
res2.push_back(ans[i]);
nonzero2.push_back(s1[i]);
}
}
f(nonzero2, h2, res2);
return;
}
void solve(int TC) {
cin >> n;
asked = 0;
for (int i = 1; i <= n; i++) {
v.push_back(i);
}
while (v.size() > 1) {
auto ans = ask(v);
vector<int> v2, s;
for (int i = 0; i < v.size(); i++) {
if (ans[i] == 0) s.push_back(v[i]);
else v2.push_back(v[i]);
}
v = v2;
IS.push_back(s);
}
if (v.size() == 1) {
IS.push_back(v);
v.clear();
}
// srand(time(NULL));
// sort(IS.begin(), IS.end(), [&](vector<int> &x, vector<int> &y) {
// return x.size() < y.size();
// });
// random_shuffle(IS.begin(), IS.end());
// for (auto i : IS) {
// cout << "one IS: " << endl;
// for (auto j : i) {
// cout << j << " ";
// }
// cout << endl;
// }
for (int i = 0; i + 1 < IS.size(); i++) {
vector<int> ij;
vector<int> js;
int sz = 0;
for (int j = i + 1; j < IS.size(); j++) {
for (auto k : IS[j]) ij.push_back(k), js.push_back(k);
sz += IS[j].size();
}
for (auto k : IS[i]) ij.push_back(k);
// cout << "asking ij" << endl;
auto t = ask(ij);
vector<int> ans;
for (int k = sz; k < IS[i].size() + sz; k++) {
ans.push_back(t[k]);
}
vector<int> i2, ans2;
for (int k = 0; k < ans.size(); k++) {
if (ans[k] > 0) {
ans2.push_back(ans[k]);
i2.push_back(IS[i][k]);
}
}
// cout << "\nf: \n";
// for (auto i : i2) {
// cout << i << " ";
// }
// cout << endl;
// for (auto i : js) {
// cout << i << " ";
// }
// cout << endl << endl;;
f(i2, js, ans2);
}
for (int i = 1; i <= n; i++) {
vector<int> tmp;
tmp.push_back(i);
tmp.push_back(i);
auto ans = ask(tmp);
int num = ans[1];
for (int j = 1; j <= num; j++) {
edge[i].push_back(i);
}
}
int total = 0;
for (int i = 1; i <= n; i++) {
total += edge[i].size();
}
cout << "! " << total;
for (int i = 1; i <= n; i++) {
for (auto j : edge[i]) {
cout << " " << i << " " << j;
}
}
cout << "\n";
cout.flush();
return;
}
int32_t main() {
cin.tie(0)->sync_with_stdio(0);
cout << fixed << setprecision(10);
int t = 1;
// cin >> t;
for (int i = 1; i <= t; i++) {
solve(i);
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3640kb
input:
4 0 2 1 0 0 0 0 0 3 0 0 2 0 0 0 0 0 0 0 1
output:
? 4 1 2 3 4 ? 2 2 3 ? 4 2 3 1 4 ? 2 2 1 ? 2 1 1 ? 2 2 2 ? 2 3 3 ? 2 4 4 ! 4 1 2 1 2 1 3 4 4
result:
ok Ok, Accepted!
Test #2:
score: -100
Wrong Answer
time: 24ms
memory: 4020kb
input:
4000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0...
output:
? 4000 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 1...
result:
wrong answer Wrong graph