#include <bits/stdc++.h>
#define ll long long
#define pb push_back
using namespace std;
ll inf =1e12;
const ll mx=155;
ll arr[mx];
vector<ll>v[155];
ll vis[mx+1];
ll c=0;
ll n;
ll k;
void dfs(ll x)
{
vis[x]=c;
for(auto u:v[x])
if(!vis[u])dfs(u);
}
ll call (ll l,ll r)
{
k=0;
for(int i=l;i<=r;i++)if(arr[i]==0)k++;
if(k==1)return 1;
if(l==r)return k;
cout<<k<<' ';
for(int i=l;i<=r;i++)
if(arr[i]==0)
cout<<i<<' ';
cout<<endl;
ll x;
cin>>x;
return x;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cin>>n;
ll l=1,r=2;
while(r<=n)
{
ll ans=call(l,r);
if(ans!=k)
{
ll le=l+1,ri=r;
while(arr[le]==1)le++;
while(le<ri)
{
//cout<<'*'<<' '<<le<<' '<<ri<<endl;
ll ans=call(le,ri);
if(ans==k)break;
le++;
while(arr[le]==1)le++;
}
v[le-1].push_back(r);
arr[le-1]=1;
//cout<<endl;
}
r++;
while(arr[l]==1)l++;
}
//--------------
for(int i=1;i<=n;i++)
{
if(vis[i]==0)
{
c++;
dfs(i);
}
}
cout<<0<<' ';
for(int i=1;i<=n;i++)cout<<vis[i]<<' ';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
48 ms |
320 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
27 ms |
320 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
324 KB |
Output is correct |
2 |
Incorrect |
55 ms |
304 KB |
Incorrect |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
51 ms |
300 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
27 ms |
208 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |