#include <bits/stdc++.h>
#define ll long long
#define endl '\n'
#define pb push_back
using namespace std;
const ll mx=150005;
vector<ll>v[mx];
bool m=false;
ll cnt=0;
bool visited[mx];
void dfs (ll x)
{
cnt++;
if(m)cout<<x<<endl;
visited[x]=1;
for(auto u:v[x])
if(visited[u]==0)
dfs(u);
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
ll n,t;
cin>>n>>t;
vector<pair<ll,ll>>b(n);
map<pair<ll,ll>,ll>mp;
for(int i=0;i<n;i++)
{
ll x,y;
cin>>x>>y;
b[i]={x,y};
mp[{x,y}]=i+1;
}
ll x[8]={1,1,1,-1,-1,-1,0,0},y[8]={1,-1,0,1,-1,0,1,-1};
ll lmt=1e9;
for(int i=0;i<n;i++)
{
ll f=b[i].first,s=b[i].second;
for(int j=0;j<8;j++)
{
if(f+y[j]>lmt||s+x[j]>lmt)continue;
if(mp[{f+y[j],s+x[j]}]>0)
{
v[mp[{f,s}]].push_back(mp[{f+y[j],s+x[j]}]);
}
}
}
dfs(1);
if(cnt!=n)
{
cout<<"NO"<<endl;
}
else
{
cout<<"YES"<<endl;
sort(b.begin(),b.end(),greater<pair<ll,ll>>());
bool arr[n+1]={};
cnt=1;
cout<<mp[b[0]]<<endl;
arr[mp[b[0]]]=1;
while(cnt!=n)
{
for(int i=1;i<n;i++)
{
ll f=b[i].first,s=b[i].second;
if(arr[mp[{f,s}]]==1)continue;
for(int j=0;j<8;j++)
{
if(f+y[j]>lmt||s+x[j]>lmt)continue;
if(arr[mp[{f+y[j],s+x[j]}]]==1)
{
cnt++;
cout<<mp[{f,s}]<<endl;
arr[mp[{f,s}]]=1;
}
}
}
}
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
3796 KB |
ans=YES N=1 |
2 |
Execution timed out |
3525 ms |
3796 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
3796 KB |
ans=YES N=1 |
2 |
Execution timed out |
3525 ms |
3796 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
3796 KB |
ans=YES N=1 |
2 |
Execution timed out |
3525 ms |
3796 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
8 ms |
4948 KB |
ans=NO N=1934 |
2 |
Correct |
8 ms |
4280 KB |
ans=NO N=1965 |
3 |
Execution timed out |
3545 ms |
4180 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
3796 KB |
ans=YES N=1 |
2 |
Execution timed out |
3525 ms |
3796 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
290 ms |
18396 KB |
ans=NO N=66151 |
2 |
Correct |
300 ms |
33864 KB |
ans=NO N=64333 |
3 |
Execution timed out |
3571 ms |
19696 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
8 ms |
4948 KB |
ans=NO N=1934 |
2 |
Correct |
8 ms |
4280 KB |
ans=NO N=1965 |
3 |
Execution timed out |
3545 ms |
4180 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |