QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#151792 | #4218. Hidden Graph | HaccerKat | WA | 10ms | 3604kb | C++20 | 5.1kb | 2023-08-27 14:27:35 | 2023-08-27 14:27:37 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
template<typename T>
int SIZE(T (&t)){
return t.size();
}
template<typename T, size_t N>
int SIZE(T (&t)[N]){
return N;
}
string to_string(char t){
return "'" + string({t}) + "'";
}
string to_string(bool t){
return t ? "true" : "false";
}
string to_string(const string &t, int x1=0, int x2=1e9){
string ret = "";
for(int i = min(x1,SIZE(t)), _i = min(x2,SIZE(t)-1); i <= _i; ++i){
ret += t[i];
}
return '"' + ret + '"';
}
string to_string(const char* t){
string ret(t);
return to_string(ret);
}
template<size_t N>
string to_string(const bitset<N> &t, int x1=0, int x2=1e9){
string ret = "";
for(int i = min(x1,SIZE(t)); i <= min(x2,SIZE(t)-1); ++i){
ret += t[i] + '0';
}
return to_string(ret);
}
template<typename T, typename... Coords>
string to_string(const T (&t), int x1=0, int x2=1e9, Coords... C);
template<typename T, typename S>
string to_string(const pair<T, S> &t){
return "(" + to_string(t.first) + ", " + to_string(t.second) + ")";
}
template<typename T, typename... Coords>
string to_string(const T (&t), int x1, int x2, Coords... C){
string ret = "[";
x1 = min(x1, SIZE(t));
auto e = begin(t);
advance(e,x1);
for(int i = x1, _i = min(x2,SIZE(t)-1); i <= _i; ++i){
ret += to_string(*e, C...) + (i != _i ? ", " : "");
e = next(e);
}
return ret + "]";
}
template<int Index, typename... Ts>
struct print_tuple{
string operator() (const tuple<Ts...>& t) {
string ret = print_tuple<Index - 1, Ts...>{}(t);
ret += (Index ? ", " : "");
return ret + to_string(get<Index>(t));
}
};
template<typename... Ts>
struct print_tuple<0, Ts...> {
string operator() (const tuple<Ts...>& t) {
return to_string(get<0>(t));
}
};
template<typename... Ts>
string to_string(const tuple<Ts...>& t) {
const auto Size = tuple_size<tuple<Ts...>>::value;
return print_tuple<Size - 1, Ts...>{}(t);
}
void dbgr(){;}
template<typename Heads, typename... Tails>
void dbgr(Heads H, Tails... T){
cout << to_string(H) << " | ";
dbgr(T...);
}
void dbgs(){;}
template<typename Heads, typename... Tails>
void dbgs(Heads H, Tails... T){
cout << H << " ";
dbgs(T...);
}
/*
formatted functions:
*/
/*
consider __VA_ARGS__ as a whole:
dbgv() prints values only
dbg() prints name and values
*/
#define dbgv(...) cout << to_string(__VA_ARGS__) << endl;
#define dbg(...) cout << "[" << #__VA_ARGS__ << "]: "; dbgv(__VA_ARGS__);
//#define dbg(...)
/*
consider __VA_ARGS__ as a sequence of arguments:
dbgr() prints values only
dbgm() prints names and values
*/
#define dbgr(...) dbgr(__VA_ARGS__); cout << endl;
#define dbgm(...) cout << "[" << #__VA_ARGS__ << "]: "; dbgr(__VA_ARGS__);
struct custom_hash {
static uint64_t splitmix64(uint64_t x) {
// http://xorshift.di.unimi.it/splitmix64.c
x += 0x9e3779b97f4a7c15;
x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9;
x = (x ^ (x >> 27)) * 0x94d049bb133111eb;
return x ^ (x >> 31);
}
size_t operator()(uint64_t x) const {
static const uint64_t FIXED_RANDOM = chrono::steady_clock::now().time_since_epoch().count();
return splitmix64(x + FIXED_RANDOM);
}
};
typedef long long ll;
typedef unsigned int ui;
typedef unsigned long long ull;
typedef pair<int, int> pi;
typedef pair<ll, ll> pll;
// using u128 = __uint128_t;
// using i128 = __int128;
const int mod = 1000000007;
const int N = 2005;
const int LOG = 20;
const int inf = 1e9;
const double eps = 1e-11;
int n, m, qq;
vector<int> sets[N];
pi query(vector<int> a) {
cout << "? " << a.size() << " ";
for (int x : a) cout << x << " ";
cout << endl;
int i, j;
cin >> i >> j;
return {i, j};
}
void solve() {
cin >> n;
vector<pi> edges;
int cur = 1;
sets[0].push_back(1);
for (int i = 2; i <= n; i++) {
int addto = -1;
for (int j = 0; j < cur; j++) {
vector<int> s = sets[j];
bool f = 1;
while (true) {
vector<int> q = s;
q.push_back(i);
auto [u, v] = query(q);
if (u == -1) {
if (f) addto = j;
break;
}
else {
edges.push_back({u, v});
vector<int> ns;
for (int k = 0; k < s.size(); k++) {
if (s[k] != u && s[k] != v) {
ns.push_back(s[k]);
}
}
s = ns;
}
f = 0;
}
}
sets[(addto == -1 ? cur++ : addto)].push_back(i);
}
cout << "! " << edges.size() << "\n";
for (auto [u, v] : edges) {
cout << u << " " << v << "\n";
}
}
int32_t main() {
std::ios::sync_with_stdio(false);
cin.tie(NULL);
solve();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3588kb
input:
3 1 2 -1 -1 1 3 -1 -1 2 3 -1 -1
output:
? 2 1 2 ? 1 2 ? 2 1 3 ? 1 3 ? 2 2 3 ? 1 3 ! 3 1 2 1 3 2 3
result:
ok correct
Test #2:
score: 0
Accepted
time: 2ms
memory: 3480kb
input:
10 1 2 -1 -1 1 3 -1 -1 -1 -1 1 4 -1 -1 -1 -1 -1 -1 2 5 4 5 -1 -1 -1 -1 2 6 -1 -1 -1 -1 3 7 -1 -1 -1 -1 4 8 3 8 -1 -1 -1 -1 3 9 -1 -1 -1 -1 4 10 3 10 -1 -1
output:
? 2 1 2 ? 1 2 ? 2 1 3 ? 1 3 ? 2 2 3 ? 2 1 4 ? 1 4 ? 3 2 3 4 ? 2 1 5 ? 4 2 3 4 5 ? 3 3 4 5 ? 2 3 5 ? 3 1 5 6 ? 4 2 3 4 6 ? 3 3 4 6 ? 4 1 5 6 7 ? 4 2 3 4 7 ? 3 2 4 7 ? 5 1 5 6 7 8 ? 4 2 3 4 8 ? 3 2 3 8 ? 2 2 8 ? 6 1 5 6 7 8 9 ? 4 2 3 4 9 ? 3 2 4 9 ? 7 1 5 6 7 8 9 10 ? 4 2 3 4...
result:
ok correct
Test #3:
score: 0
Accepted
time: 1ms
memory: 3456kb
input:
5 2 1 -1 -1 3 1 -1 -1 3 2 -1 -1 4 1 -1 -1 4 2 -1 -1 -1 -1 5 1 -1 -1 5 2 -1 -1 -1 -1
output:
? 2 1 2 ? 1 2 ? 2 1 3 ? 1 3 ? 2 2 3 ? 1 3 ? 2 1 4 ? 1 4 ? 2 2 4 ? 1 4 ? 2 3 4 ? 2 1 5 ? 1 5 ? 2 2 5 ? 1 5 ? 3 3 4 5 ! 7 2 1 3 1 3 2 4 1 4 2 5 1 5 2
result:
ok correct
Test #4:
score: 0
Accepted
time: 0ms
memory: 3524kb
input:
3 2 1 -1 -1 1 3 -1 -1 -1 -1
output:
? 2 1 2 ? 1 2 ? 2 1 3 ? 1 3 ? 2 2 3 ! 2 2 1 1 3
result:
ok correct
Test #5:
score: 0
Accepted
time: 2ms
memory: 3448kb
input:
6 1 2 -1 -1 3 1 -1 -1 3 2 -1 -1 -1 -1 4 2 -1 -1 3 4 -1 -1 4 5 -1 -1 2 5 -1 -1 3 5 -1 -1 -1 -1 -1 -1 3 6 -1 -1 -1 -1
output:
? 2 1 2 ? 1 2 ? 2 1 3 ? 1 3 ? 2 2 3 ? 1 3 ? 2 1 4 ? 2 2 4 ? 1 4 ? 2 3 4 ? 1 4 ? 3 1 4 5 ? 2 1 5 ? 2 2 5 ? 1 5 ? 2 3 5 ? 1 5 ? 3 1 4 6 ? 2 2 6 ? 2 3 6 ? 1 6 ? 2 5 6 ! 9 1 2 3 1 3 2 4 2 3 4 4 5 2 5 3 5 3 6
result:
ok correct
Test #6:
score: 0
Accepted
time: 0ms
memory: 3540kb
input:
27 -1 -1 3 1 3 2 -1 -1 -1 -1 -1 -1 2 5 1 5 -1 -1 3 5 -1 -1 6 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 8 -1 -1 -1 -1 6 8 -1 -1 1 9 -1 -1 -1 -1 -1 -1 -1 -1 10 8 -1 -1 -1 -1 1 11 -1 -1 4 11 -1 -1 6 11 5 11 -1 -1 -1 -1 -1 -1 5 12 -1 -1 12 11 -1 -1 -1 -1 8 13 -1 -1 6 13 10 13 5 13 -1 -1 -1 -1 14 1 -1 -1 1...
output:
? 2 1 2 ? 3 1 2 3 ? 2 2 3 ? 1 3 ? 3 1 2 4 ? 2 3 4 ? 3 1 2 5 ? 2 1 5 ? 1 5 ? 3 3 4 5 ? 2 4 5 ? 3 1 2 6 ? 2 2 6 ? 3 3 4 6 ? 2 5 6 ? 3 1 2 7 ? 3 3 4 7 ? 3 5 6 7 ? 3 1 2 8 ? 2 2 8 ? 3 3 4 8 ? 4 5 6 7 8 ? 3 5 7 8 ? 3 1 2 9 ? 2 2 9 ? 4 3 4 8 9 ? 4 5 6 7 9 ? 3 1 2 10 ? 4 3 4 8 1...
result:
ok correct
Test #7:
score: 0
Accepted
time: 5ms
memory: 3572kb
input:
47 -1 -1 -1 -1 -1 -1 5 4 5 3 -1 -1 -1 -1 -1 -1 -1 -1 7 5 7 6 -1 -1 -1 -1 5 8 -1 -1 9 4 -1 -1 -1 -1 10 7 -1 -1 -1 -1 7 11 11 1 -1 -1 -1 -1 12 3 7 12 2 12 -1 -1 5 12 11 12 -1 -1 13 7 -1 -1 13 5 13 11 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 15 -1 -1 -1 -1 13 15 -1 -1 16 1 -1 -1 -1 -1 -1 -1 17 8 17 3 17 7 17 1 ...
output:
? 2 1 2 ? 3 1 2 3 ? 4 1 2 3 4 ? 5 1 2 3 4 5 ? 4 1 2 3 5 ? 3 1 2 5 ? 5 1 2 3 4 6 ? 2 5 6 ? 5 1 2 3 4 7 ? 3 5 6 7 ? 2 6 7 ? 1 7 ? 6 1 2 3 4 7 8 ? 3 5 6 8 ? 2 6 8 ? 7 1 2 3 4 7 8 9 ? 6 1 2 3 7 8 9 ? 3 5 6 9 ? 7 1 2 3 4 7 8 10 ? 6 1 2 3 4 8 10 ? 4 5 6 9 10 ? 7 1 2 3 4 7 8 11 ? 6 1 ...
result:
ok correct
Test #8:
score: 0
Accepted
time: 8ms
memory: 3460kb
input:
38 -1 -1 -1 -1 4 1 -1 -1 1 5 3 5 -1 -1 4 5 -1 -1 -1 -1 4 6 -1 -1 -1 -1 2 7 -1 -1 4 7 -1 -1 6 7 7 5 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 10 -1 -1 -1 -1 -1 -1 11 1 -1 -1 11 4 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 12 8 12 7 11 12 -1 -1 13 1 -1 -1 4 13 -1 -1 13 12 -1 -1 11 13 13 8...
output:
? 2 1 2 ? 3 1 2 3 ? 4 1 2 3 4 ? 3 2 3 4 ? 4 1 2 3 5 ? 3 2 3 5 ? 2 2 5 ? 2 4 5 ? 1 5 ? 4 1 2 3 6 ? 2 4 6 ? 1 6 ? 2 5 6 ? 4 1 2 3 7 ? 3 1 3 7 ? 2 4 7 ? 1 7 ? 3 5 6 7 ? 2 5 7 ? 1 7 ? 4 1 2 3 8 ? 2 4 8 ? 3 5 6 8 ? 2 7 8 ? 4 1 2 3 9 ? 2 4 9 ? 3 5 6 9 ? 3 7 8 9 ? 4 1 2 3 10 ? ...
result:
ok correct
Test #9:
score: 0
Accepted
time: 5ms
memory: 3472kb
input:
25 -1 -1 -1 -1 -1 -1 5 4 5 2 -1 -1 6 4 -1 -1 -1 -1 7 3 -1 -1 5 7 -1 -1 4 8 2 8 -1 -1 5 8 -1 -1 -1 -1 9 4 2 9 -1 -1 -1 -1 9 8 -1 -1 10 3 -1 -1 -1 -1 -1 -1 2 11 -1 -1 9 11 -1 -1 10 11 -1 -1 12 4 -1 -1 6 12 -1 -1 -1 -1 -1 -1 -1 -1 6 13 5 13 -1 -1 13 8 7 13 -1 -1 -1 -1 14 4 14 3 -1 -1 5 14 -1 -1 7 14 -1...
output:
? 2 1 2 ? 3 1 2 3 ? 4 1 2 3 4 ? 5 1 2 3 4 5 ? 4 1 2 3 5 ? 3 1 3 5 ? 5 1 2 3 4 6 ? 4 1 2 3 6 ? 2 5 6 ? 5 1 2 3 4 7 ? 4 1 2 4 7 ? 3 5 6 7 ? 2 6 7 ? 5 1 2 3 4 8 ? 4 1 2 3 8 ? 3 1 3 8 ? 3 5 6 8 ? 2 6 8 ? 2 7 8 ? 5 1 2 3 4 9 ? 4 1 2 3 9 ? 3 1 3 9 ? 3 5 6 9 ? 3 7 8 9 ? 2 7 9 ? 5 1...
result:
ok correct
Test #10:
score: 0
Accepted
time: 1ms
memory: 3588kb
input:
6 -1 -1 2 3 -1 -1 -1 -1 -1 -1 2 5 -1 -1 -1 -1 -1 -1 5 6 -1 -1
output:
? 2 1 2 ? 3 1 2 3 ? 2 1 3 ? 3 1 2 4 ? 2 3 4 ? 3 1 2 5 ? 2 1 5 ? 3 3 4 5 ? 3 1 2 6 ? 4 3 4 5 6 ? 3 3 4 6 ! 3 2 3 2 5 5 6
result:
ok correct
Test #11:
score: 0
Accepted
time: 0ms
memory: 3484kb
input:
3 2 1 -1 -1 3 1 -1 -1 2 3 -1 -1
output:
? 2 1 2 ? 1 2 ? 2 1 3 ? 1 3 ? 2 2 3 ? 1 3 ! 3 2 1 3 1 2 3
result:
ok correct
Test #12:
score: 0
Accepted
time: 0ms
memory: 3468kb
input:
3 2 1 -1 -1 3 1 -1 -1 -1 -1
output:
? 2 1 2 ? 1 2 ? 2 1 3 ? 1 3 ? 2 2 3 ! 2 2 1 3 1
result:
ok correct
Test #13:
score: 0
Accepted
time: 1ms
memory: 3476kb
input:
5 2 1 -1 -1 3 1 -1 -1 2 3 -1 -1 -1 -1 -1 -1 -1 -1 5 1 -1 -1 2 5 -1 -1 -1 -1
output:
? 2 1 2 ? 1 2 ? 2 1 3 ? 1 3 ? 2 2 3 ? 1 3 ? 2 1 4 ? 2 2 4 ? 2 3 4 ? 2 1 5 ? 1 5 ? 2 2 5 ? 1 5 ? 3 3 4 5 ! 5 2 1 3 1 2 3 5 1 2 5
result:
ok correct
Test #14:
score: 0
Accepted
time: 1ms
memory: 3528kb
input:
3 2 1 -1 -1 -1 -1 -1 -1
output:
? 2 1 2 ? 1 2 ? 2 1 3 ? 2 2 3 ! 1 2 1
result:
ok correct
Test #15:
score: 0
Accepted
time: 2ms
memory: 3524kb
input:
5 -1 -1 -1 -1 4 3 -1 -1 2 5 3 5 -1 -1 -1 -1
output:
? 2 1 2 ? 3 1 2 3 ? 4 1 2 3 4 ? 3 1 2 4 ? 4 1 2 3 5 ? 3 1 3 5 ? 2 1 5 ? 2 4 5 ! 3 4 3 2 5 3 5
result:
ok correct
Test #16:
score: 0
Accepted
time: 5ms
memory: 3496kb
input:
93 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 9 -1 -1 7 11 -1 -1 -1 -1 2 12 -1 -1 -1 -1 5 13 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 15 12 -1 -1 6 16 8 16 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 19 18 11 19 -1 -1 -1 -1 20 16 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 23 8 23 -1 -1 -1 -1 -1 -1 -1 -1 1 25 -1 -1 ...
output:
? 2 1 2 ? 3 1 2 3 ? 4 1 2 3 4 ? 5 1 2 3 4 5 ? 6 1 2 3 4 5 6 ? 7 1 2 3 4 5 6 7 ? 8 1 2 3 4 5 6 7 8 ? 9 1 2 3 4 5 6 7 8 9 ? 10 1 2 3 4 5 6 7 8 9 10 ? 9 1 2 3 4 5 6 7 8 10 ? 10 1 2 3 4 5 6 7 8 9 11 ? 9 1 2 3 4 5 6 8 9 11 ? 2 10 11 ? 10 1 2 3 4 5 6 7 8 9 12 ? 9 1 3 4 5 6 7 8 9 12 ? 3 10 1...
result:
ok correct
Test #17:
score: 0
Accepted
time: 6ms
memory: 3464kb
input:
111 -1 -1 -1 -1 -1 -1 -1 -1 2 6 -1 -1 7 4 -1 -1 -1 -1 3 8 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 11 4 11 -1 -1 -1 -1 12 4 -1 -1 6 12 7 12 12 11 -1 -1 -1 -1 13 10 7 13 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 17 10 -1 -1 -1 -1 4 18 18 5 -1 -1 -1 -1 -1 -1 -1 -1 11 19 -1 -...
output:
? 2 1 2 ? 3 1 2 3 ? 4 1 2 3 4 ? 5 1 2 3 4 5 ? 6 1 2 3 4 5 6 ? 5 1 3 4 5 6 ? 6 1 2 3 4 5 7 ? 5 1 2 3 5 7 ? 2 6 7 ? 6 1 2 3 4 5 8 ? 5 1 2 4 5 8 ? 3 6 7 8 ? 6 1 2 3 4 5 9 ? 4 6 7 8 9 ? 6 1 2 3 4 5 10 ? 5 6 7 8 9 10 ? 6 1 2 3 4 5 11 ? 5 1 3 4 5 11 ? 4 1 3 5 11 ? 6 6 7 8 9 10 11 ? 6 1...
result:
ok correct
Test #18:
score: 0
Accepted
time: 7ms
memory: 3468kb
input:
132 -1 -1 3 1 -1 -1 -1 -1 -1 -1 5 1 -1 -1 -1 -1 -1 -1 6 3 -1 -1 7 2 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 8 5 10 -1 -1 -1 -1 -1 -1 -1 -1 12 8 -1 -1 -1 -1 9 13 -1 -1 2 14 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 17 15 -1 -1 -1 -1 -1 -1 17 19 19 10 19 6 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 21 20 -1 -...
output:
? 2 1 2 ? 3 1 2 3 ? 2 2 3 ? 3 1 2 4 ? 2 3 4 ? 3 1 2 5 ? 2 2 5 ? 3 3 4 5 ? 3 1 2 6 ? 4 3 4 5 6 ? 3 4 5 6 ? 4 1 2 6 7 ? 3 1 6 7 ? 4 3 4 5 7 ? 4 1 2 6 8 ? 5 3 4 5 7 8 ? 4 1 2 6 9 ? 6 3 4 5 7 8 9 ? 4 1 2 6 10 ? 7 3 4 5 7 8 9 10 ? 6 3 4 5 7 9 10 ? 5 3 4 7 9 10 ? 5 1 2 6 10 11 ? 7 3...
result:
ok correct
Test #19:
score: 0
Accepted
time: 0ms
memory: 3488kb
input:
94 -1 -1 3 2 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 7 -1 -1 -1 -1 -1 -1 -1 -1 2 9 -1 -1 7 9 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 11 6 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 13 -1 -1 11 13 -1 -1 -1 -1 -1 -1 14 11 14 10 -1 -1 -1 -1 -1 -1 15 11 -1 -1 -1 -1 15 16 16 7 -1 -1 -1 -1 -1 -1 17 8 -1 -1 17 11 17 ...
output:
? 2 1 2 ? 3 1 2 3 ? 2 1 3 ? 3 1 2 4 ? 2 3 4 ? 3 1 2 5 ? 3 3 4 5 ? 3 1 2 6 ? 4 3 4 5 6 ? 3 1 2 7 ? 2 1 7 ? 5 3 4 5 6 7 ? 3 1 2 8 ? 6 3 4 5 6 7 8 ? 3 1 2 9 ? 2 1 9 ? 7 3 4 5 6 7 8 9 ? 6 3 4 5 6 8 9 ? 3 1 2 10 ? 7 3 4 5 6 7 8 10 ? 2 9 10 ? 3 1 2 11 ? 7 3 4 5 6 7 8 11 ? 6 3 4 5 7 ...
result:
ok correct
Test #20:
score: 0
Accepted
time: 2ms
memory: 3492kb
input:
73 -1 -1 1 3 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 7 6 7 -1 -1 -1 -1 3 8 -1 -1 1 9 9 8 -1 -1 -1 -1 1 10 -1 -1 3 10 4 10 9 10 -1 -1 -1 -1 4 11 -1 -1 -1 -1 -1 -1 12 9 12 3 -1 -1 12 10 -1 -1 -1 -1 13 6 -1 -1 13 11 -1 -1 -1 -1 -1 -1 -1 -1 15 8 -1 -1 -1 -1 -1 -1 1 16 -1 -1 3 16 -1 -1 10 16 16...
output:
? 2 1 2 ? 3 1 2 3 ? 2 2 3 ? 3 1 2 4 ? 2 3 4 ? 3 1 2 5 ? 3 3 4 5 ? 3 1 2 6 ? 4 3 4 5 6 ? 3 1 2 7 ? 5 3 4 5 6 7 ? 4 3 4 6 7 ? 3 3 4 7 ? 4 1 2 7 8 ? 5 3 4 5 6 8 ? 4 4 5 6 8 ? 5 1 2 7 8 9 ? 4 2 7 8 9 ? 3 2 7 9 ? 5 3 4 5 6 9 ? 5 1 2 7 8 10 ? 4 2 7 8 10 ? 6 3 4 5 6 9 10 ? 5 4 5 6 9 ...
result:
ok correct
Test #21:
score: 0
Accepted
time: 5ms
memory: 3540kb
input:
77 -1 -1 3 2 -1 -1 2 4 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 -1 -1 -1 -1 3 7 -1 -1 -1 -1 3 8 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 11 -1 -1 -1 -1 -1 -1 -1 -1 8 13 -1 -1 -1 -1 2 14 14 8 14 7 -1 -1 -1 -1 2 15 15 8 -1 -1 3 15 -1 -1 16 1 16 8 2 16 -1 -1 -1 -1 16 15 -1 -1 7 17 2 17 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1...
output:
? 2 1 2 ? 3 1 2 3 ? 2 1 3 ? 3 1 2 4 ? 2 1 4 ? 2 3 4 ? 3 1 2 5 ? 3 3 4 5 ? 3 1 2 6 ? 4 3 4 5 6 ? 3 4 5 6 ? 4 1 2 6 7 ? 4 3 4 5 7 ? 3 4 5 7 ? 5 1 2 6 7 8 ? 4 3 4 5 8 ? 3 4 5 8 ? 6 1 2 6 7 8 9 ? 4 3 4 5 9 ? 6 1 2 6 7 8 10 ? 5 3 4 5 9 10 ? 6 1 2 6 7 8 11 ? 5 2 6 7 8 11 ? 6 3 4 5 9...
result:
ok correct
Test #22:
score: 0
Accepted
time: 6ms
memory: 3604kb
input:
81 -1 -1 2 3 -1 -1 2 4 -1 -1 -1 -1 1 5 -1 -1 4 5 -1 -1 -1 -1 4 6 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 8 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 10 -1 -1 10 3 10 4 -1 -1 10 6 -1 -1 -1 -1 11 3 4 11 -1 -1 -1 -1 -1 -1 2 12 -1 -1 -1 -1 6 12 8 12 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 13 -1 -1 1 14 -1 -1 -1 -1 -1 -1 1...
output:
? 2 1 2 ? 3 1 2 3 ? 2 1 3 ? 3 1 2 4 ? 2 1 4 ? 2 3 4 ? 3 1 2 5 ? 2 2 5 ? 3 3 4 5 ? 2 3 5 ? 3 1 2 6 ? 3 3 4 6 ? 2 3 6 ? 2 5 6 ? 3 1 2 7 ? 3 3 4 7 ? 3 5 6 7 ? 3 1 2 8 ? 2 2 8 ? 3 3 4 8 ? 4 5 6 7 8 ? 3 1 2 9 ? 3 3 4 9 ? 5 5 6 7 8 9 ? 3 1 2 10 ? 2 1 10 ? 3 3 4 10 ? 2 4 10 ? 1 ...
result:
ok correct
Test #23:
score: 0
Accepted
time: 10ms
memory: 3544kb
input:
93 -1 -1 -1 -1 4 1 2 4 -1 -1 -1 -1 -1 -1 -1 -1 4 6 -1 -1 2 7 -1 -1 -1 -1 1 8 3 8 -1 -1 -1 -1 9 1 -1 -1 9 8 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 13 7 -1 -1 -1 -1 1 14 -1 -1 4 14 -1 -1 9 14 -1 -1 -1 -1 -1 -1 -1 -1 14 15 -1 -1 -1 -1 -1 -1 13 16 -1 -1 -1 -1 2 17 17 3 17 1 -1...
output:
? 2 1 2 ? 3 1 2 3 ? 4 1 2 3 4 ? 3 2 3 4 ? 2 3 4 ? 4 1 2 3 5 ? 2 4 5 ? 4 1 2 3 6 ? 3 4 5 6 ? 2 5 6 ? 5 1 2 3 6 7 ? 4 1 3 6 7 ? 3 4 5 7 ? 5 1 2 3 6 8 ? 4 2 3 6 8 ? 3 2 6 8 ? 4 4 5 7 8 ? 5 1 2 3 6 9 ? 4 2 3 6 9 ? 5 4 5 7 8 9 ? 4 4 5 7 9 ? 5 1 2 3 6 10 ? 5 4 5 7 8 10 ? 2 9 10 ? 5...
result:
ok correct
Test #24:
score: 0
Accepted
time: 2ms
memory: 3496kb
input:
37 -1 -1 3 1 -1 -1 -1 -1 -1 -1 2 5 -1 -1 -1 -1 -1 -1 -1 -1 2 7 7 1 -1 -1 -1 -1 1 8 2 8 -1 -1 4 8 6 8 7 8 -1 -1 2 9 9 1 -1 -1 6 9 -1 -1 9 8 -1 -1 1 10 -1 -1 3 10 -1 -1 10 8 -1 -1 -1 -1 11 1 2 11 -1 -1 3 11 7 11 4 11 -1 -1 11 8 -1 -1 9 11 -1 -1 12 1 -1 -1 12 7 -1 -1 12 8 -1 -1 -1 -1 -1 -1 -1 -1 6 13 -...
output:
? 2 1 2 ? 3 1 2 3 ? 2 2 3 ? 3 1 2 4 ? 2 3 4 ? 3 1 2 5 ? 2 1 5 ? 3 3 4 5 ? 3 1 2 6 ? 4 3 4 5 6 ? 3 1 2 7 ? 2 1 7 ? 1 7 ? 5 3 4 5 6 7 ? 3 1 2 8 ? 2 2 8 ? 1 8 ? 6 3 4 5 6 7 8 ? 5 3 5 6 7 8 ? 4 3 5 7 8 ? 3 3 5 8 ? 3 1 2 9 ? 2 1 9 ? 1 9 ? 6 3 4 5 6 7 9 ? 5 3 4 5 7 9 ? 2 8 9 ? 1...
result:
ok correct
Test #25:
score: -100
Wrong Answer
time: 3ms
memory: 3532kb
input:
144 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 15 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 14 18 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 22 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -...
output:
? 2 1 2 ? 3 1 2 3 ? 4 1 2 3 4 ? 5 1 2 3 4 5 ? 6 1 2 3 4 5 6 ? 7 1 2 3 4 5 6 7 ? 8 1 2 3 4 5 6 7 8 ? 9 1 2 3 4 5 6 7 8 9 ? 10 1 2 3 4 5 6 7 8 9 10 ? 11 1 2 3 4 5 6 7 8 9 10 11 ? 12 1 2 3 4 5 6 7 8 9 10 11 12 ? 13 1 2 3 4 5 6 7 8 9 10 11 12 13 ? 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14 ? 15 1 ...
result:
wrong answer Query Limit Exceeded (lim = 432)