#include "chameleon.h"
#include<bits/stdc++.h>
#define pb push_back
#define fi first
#define se second
#define mp make_pair
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef long double ld;
template <typename T> bool chkmin(T &x,T y){return x>y?x=y,1:0;}
template <typename T> bool chkmax(T &x,T y){return x<y?x=y,1:0;}
ll readint(){
ll x=0,f=1; char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
return x*f;
}
namespace {
int c[1005][1005],nxt[1005],dep[1005];
vector<int> g[1005];
bool done[1005];
}
void dfs(int x){
if(dep[x]==-1) dep[x]=0;
for(int y:g[x]){
if(dep[y]!=-1){
assert(dep[y]!=dep[x]);
continue;
}
dep[y]=(dep[x]+1)%2;
dfs(y);
}
}
void Solve(int n){
for(int i=1;i<=2*n;i++){
for(int j=1;j<=2*n;j++) dep[j]=-1;
for(int j=1;j<i;j++) if(dep[j]==-1) dfs(j);
vector<int> a,b;
for(int j=1;j<i;j++) (dep[j]==0?a:b).pb(j);
{
int l=0,r=(int)a.size()-1,p=-1;
while(l<=r){
int mid=(l+r)/2;
vector<int> qv(1,i);
for(int j=0;j<=mid;j++) qv.pb(a[j]);
if(Query(qv)!=(int)qv.size()) p=mid,r=mid-1;
else l=mid+1;
}
if(p!=-1){
g[i].pb(a[p]);
g[a[p]].pb(i);
}
}
{
int l=0,r=(int)b.size()-1,p=-1;
while(l<=r){
int mid=(l+r)/2;
vector<int> qv(1,i);
for(int j=0;j<=mid;j++) qv.pb(b[j]);
if(Query(qv)!=(int)qv.size()) p=mid,r=mid-1;
else l=mid+1;
}
if(p!=-1){
g[i].pb(b[p]);
g[b[p]].pb(i);
}
}
if(g[i].size()!=1) continue;
bool ok=false;
for(int x:a) if(x==g[i][0]) ok=true;
if(!ok) swap(a,b);
vector<int> na;
for(int x:a) if(x!=g[i][0]) na.pb(x);
a=na;
{
int l=0,r=(int)a.size()-1,p=-1;
while(l<=r){
int mid=(l+r)/2;
vector<int> qv(1,i);
for(int j=0;j<=mid;j++) qv.pb(a[j]);
if(Query(qv)!=(int)qv.size()) p=mid,r=mid-1;
else l=mid+1;
}
if(p!=-1){
g[i].pb(a[p]);
g[a[p]].pb(i);
}
}
}
vector<pii> res;
for(int i=1;i<=2*n;i++){
sort(g[i].begin(),g[i].end());
g[i].erase(unique(g[i].begin(),g[i].end()),g[i].end());
int sz=(int)g[i].size();
if(sz==3){
for(int x=0;x<3;x++){
vector<int> qv={i};
for(int y=0;y<3;y++) if(y!=x) qv.pb(g[i][y]);
if(Query(qv)==1){
nxt[i]=g[i][x];
break;
}
}
}else{
done[i]=true;
res.pb(mp(min(i,g[i][0]),max(i,g[i][0])));
}
}
for(int i=1;i<=2*n;i++){
if(done[i]) continue;
vector<int> cyc;
cyc.pb(i);
int ver=i;
while(!done[ver]) cyc.pb(ver),done[ver]=true,ver=nxt[ver];
for(int v:cyc){
for(int x:g[v]){
if(x!=nxt[v]&&nxt[x]!=v){
res.pb(mp(min(v,x),max(v,x)));
}
}
}
}
sort(res.begin(),res.end());
res.erase(unique(res.begin(),res.end()),res.end());
for(auto&p:res) Answer(p.fi,p.se);
}
Compilation message
chameleon.cpp:28:6: warning: '{anonymous}::c' defined but not used [-Wunused-variable]
28 | int c[1005][1005],nxt[1005],dep[1005];
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
596 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Correct |
46 ms |
512 KB |
Output is correct |
4 |
Correct |
47 ms |
496 KB |
Output is correct |
5 |
Correct |
48 ms |
340 KB |
Output is correct |
6 |
Correct |
51 ms |
344 KB |
Output is correct |
7 |
Correct |
47 ms |
496 KB |
Output is correct |
8 |
Correct |
47 ms |
344 KB |
Output is correct |
9 |
Correct |
50 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
344 KB |
Wrong Answer [5] |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
344 KB |
Wrong Answer [5] |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Runtime error |
1 ms |
600 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
596 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Correct |
46 ms |
512 KB |
Output is correct |
4 |
Correct |
47 ms |
496 KB |
Output is correct |
5 |
Correct |
48 ms |
340 KB |
Output is correct |
6 |
Correct |
51 ms |
344 KB |
Output is correct |
7 |
Correct |
47 ms |
496 KB |
Output is correct |
8 |
Correct |
47 ms |
344 KB |
Output is correct |
9 |
Correct |
50 ms |
344 KB |
Output is correct |
10 |
Correct |
0 ms |
344 KB |
Output is correct |
11 |
Incorrect |
0 ms |
344 KB |
Wrong Answer [5] |
12 |
Halted |
0 ms |
0 KB |
- |