#include "speedrun.h"
#include <bits/stdc++.h>
#define REP(i,n) for(int i=0;i<n;i++)
#define MNTO(x,y) x=min(x,y)
#define REP1(i,n) for(int i=1;i<=n;i++)
#define ll long long
#define ld long double
#define sz(x) (int)x.size()
#define pb push_back
#define ALL(x) x.begin(),x.end()
#define unq(c) (sort(c.begin(),c.end()), c.resize(distance(c.begin(),unique(c.begin(),c.end()))))
const int maxn=2e3+5;
using namespace std;
vector<int> v[maxn];
void dfs(int u,int p){
REP(j,10) setHint(u,j+1,(p&(1<<j))>>j);
if(u>1){
v[u].erase(find(ALL(v[u]),p));
}
if(sz(v[u])) REP(j,10) setHint(u,j+11,(v[u][0]&(1<<j))>>j);
REP(j,sz(v[u])){
int x=v[u][j];
int nxt=u;
if(j<sz(v[u])-1) nxt=v[u][j+1];
REP(j,10) setHint(x,j+21,(nxt&(1<<j))>>j);
dfs(x,u);
}
}
void assignHints(int subtask, int n, int A[], int B[]) {
setHintLen(30);
REP1(i,n-1){
v[A[i]].pb(B[i]);
v[B[i]].pb(A[i]);
}
dfs(1,1023);
}
void gotoo(int x){
if(x==0) assert(false);
goTo(x);
}
void dfs2(int u){
int p=0;
REP(j,10) p=(p<<1)+getHint(10-j);
int x=0;
REP(j,10) x=(x<<1)+getHint(20-j);
if(x==0){
gotoo(p);
return;
}
while(x!=u){
gotoo(x);
int nx=0;
REP(j,10) nx=(nx<<1)+getHint(30-j);
dfs2(x);
x=nx;
}
if(u!=1) gotoo(p);
}
void speedrun(int subtask, int n, int start) {
while(start!=1){
int p=0;
REP(j,10) p=(p<<1)+getHint(10-j);
gotoo(p);
start=p;
}
dfs2(1);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
217 ms |
732 KB |
Output is correct |
2 |
Correct |
213 ms |
768 KB |
Output is correct |
3 |
Correct |
226 ms |
812 KB |
Output is correct |
4 |
Correct |
208 ms |
824 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
The length is too large |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
The length is too large |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
173 ms |
776 KB |
Output is correct |
2 |
Correct |
207 ms |
672 KB |
Output is correct |
3 |
Correct |
175 ms |
684 KB |
Output is correct |
4 |
Correct |
207 ms |
1088 KB |
Output is correct |
5 |
Correct |
187 ms |
760 KB |
Output is correct |
6 |
Correct |
169 ms |
672 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Partially correct |
161 ms |
672 KB |
Partial solution |
2 |
Partially correct |
160 ms |
744 KB |
Partial solution |
3 |
Partially correct |
144 ms |
696 KB |
Partial solution |
4 |
Partially correct |
179 ms |
896 KB |
Partial solution |
5 |
Partially correct |
159 ms |
672 KB |
Partial solution |
6 |
Partially correct |
230 ms |
788 KB |
Partial solution |
7 |
Partially correct |
158 ms |
676 KB |
Partial solution |