#include "library.h"
#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e3 + 5;
int n;
vector<int> way[maxn];
bool vis[maxn];
vector<int> ans;
int ask(int l, int r, int x) {
vector<int> vec;
for(int i=1;i<=n;i++) {
if(i==x || (l<=i && i<=r)) vec.push_back(1);
else vec.push_back(0);
}
return Query(vec);
}
void addedge(int x, int l, int r) {
if(l>r) return ;
// printf("ask [%d, %d] : %d = %d original = %d\n",l,r,x,ask(l,r,x),ask(l,r,0));
if(ask(l,r,x)>ask(l,r,0)) return ;
if(l==r) {
// printf("%d <-> %d\n",l,x);
way[x].push_back(l);
way[l].push_back(x);
return ;
}
int mid = (l+r)/2;
addedge(x,l,mid); addedge(x,mid+1,r);
}
void dfs(int u, int last) {
// printf("dfs %d\n",u,last);
vis[u] = 1;
ans.push_back(u);
for(auto v : way[u]) {
if(vis[v]) continue;
dfs(v, u);
}
}
void Solve(int N) {
n = N;
for(int i=1;i<=n;i++) way[i].clear();
ans.clear();
for(int x=1;x<=n;x++) addedge(x,1,x-1), addedge(x,x+1,n);
for(int x=1;x<=n;x++) {
way[x].erase(unique(way[x].begin(),way[x].end()),way[x].end());
if(way[x].size()==1) {
dfs(x, 0);
Answer(ans);
return ;
}
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
176 ms |
376 KB |
Output is correct |
2 |
Correct |
185 ms |
536 KB |
Output is correct |
3 |
Correct |
190 ms |
536 KB |
Output is correct |
4 |
Correct |
205 ms |
536 KB |
Output is correct |
5 |
Correct |
200 ms |
616 KB |
Output is correct |
6 |
Correct |
188 ms |
616 KB |
Output is correct |
7 |
Correct |
189 ms |
616 KB |
Output is correct |
8 |
Correct |
195 ms |
648 KB |
Output is correct |
9 |
Correct |
188 ms |
648 KB |
Output is correct |
10 |
Correct |
116 ms |
648 KB |
Output is correct |
11 |
Incorrect |
2 ms |
648 KB |
Wrong Answer [7] |
12 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
176 ms |
376 KB |
Output is correct |
2 |
Correct |
185 ms |
536 KB |
Output is correct |
3 |
Correct |
190 ms |
536 KB |
Output is correct |
4 |
Correct |
205 ms |
536 KB |
Output is correct |
5 |
Correct |
200 ms |
616 KB |
Output is correct |
6 |
Correct |
188 ms |
616 KB |
Output is correct |
7 |
Correct |
189 ms |
616 KB |
Output is correct |
8 |
Correct |
195 ms |
648 KB |
Output is correct |
9 |
Correct |
188 ms |
648 KB |
Output is correct |
10 |
Correct |
116 ms |
648 KB |
Output is correct |
11 |
Incorrect |
2 ms |
648 KB |
Wrong Answer [7] |
12 |
Halted |
0 ms |
0 KB |
- |