QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#593578#9251. Graph Changingucup-team4352#WA 0ms3804kbC++231.7kb2024-09-27 14:46:172024-09-27 14:46:22

Judging History

你现在查看的是最新测评结果

  • [2024-09-27 14:46:22]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3804kb
  • [2024-09-27 14:46:17]
  • 提交

answer

#include<bits/stdc++.h>
#define ll long long
#define pii pair<ll,ll>
#define lowbit(x) (x&-x)
#define log(x) (31^__builtin_clz(x))
using namespace std;

ll t,n,k,x,y;
ll calc(ll a,ll b){
	if(abs(a-b)>=k)return 1;
	if((a-1<k&&n-a<k)||(b-1<k&&n-b<k))return -1;
	if((a-1>=k&&b-1>=k)||(n-a>=k&&n-b>=k))return 2;
	return 3;
}
void solve(){
	cin>>t>>n>>k>>x>>y;
	if(x>y)swap(x,y);
	if(t==0){
		cout<<y-x<<"\n";
		return;
	}
	if(k==1){
		cout<<"1\n";
		return;
	}
	if(k==2){
		if(n==2){
			cout<<"-1\n";
			return;
		}
		if(n==3){
			if(t==1&&x==1&&y==3)cout<<"1\n";
			else cout<<"-1\n";
			return;
		}
		if(t&1){
			if(y-x==1)cout<<"2\n";
			else cout<<"1\n";
		}
		else{
			cout<<y-x<<"\n";
		}
		return;
	}
	if(t==1){
		cout<<calc(x,y)<<"\n";
		return;
	}
	if(t==3){
		cout<<"-1\n";
		return;
	}
	vector<ll>p,d(10,1e9);
	p={x,y,1,n,2,n-1};
	sort(p.begin(),p.end());
	p.resize(unique(p.begin(),p.end())-p.begin());
	priority_queue<pii,vector<pii>,greater<pii>>q;
	q.push({0,x});
	for(int i=0;i<p.size();i++){
		if(p[i]==x)d[i]=0;
	}
	while(!q.empty()){
		int now=q.top().second,to=0,dis=q.top().first;
		q.pop();
		int flag=0;
		for(int i=0;i<d.size();i++){
			if(p[i]==now&&d[i]<dis)flag=1;
		}
		if(flag)continue;
		for(int i=0;i<p.size();i++){
			if(d[i]>dis+1&&calc(p[i],now)>=k){
				d[i]=dis+1;
				
				q.push({d[i],p[i]});
			}
		}
	}
	for(int i=0;i<p.size();i++){
		//cout<<p[i]<<" "<<d[i]<<"\n";
		if(p[i]==y){
			if(d[i]==1e9)d[i]=-1;
			cout<<d[i]<<"\n";
		}
	}
}
int main(){
    ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
    int t=1;
    cin>>t;
    while(t--)solve();
    return 0;
}
/*
1
2 5 3 2 4
*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3596kb

input:

5
1 5 3 2 4
1 10 4 2 4
2 10 5 2 4
1 3 2 1 3
1 3 2 1 2

output:

3
2
-1
1
-1

result:

ok 5 lines

Test #2:

score: 0
Accepted
time: 0ms
memory: 3804kb

input:

30
1 2 1 1 2
1 2 2 1 2
1 2 3 1 2
1 2 4 1 2
1 2 5 1 2
1 2 6 1 2
2 2 1 1 2
2 2 2 1 2
2 2 3 1 2
2 2 4 1 2
2 2 5 1 2
2 2 6 1 2
3 2 1 1 2
3 2 2 1 2
3 2 3 1 2
3 2 4 1 2
3 2 5 1 2
3 2 6 1 2
4 2 1 1 2
4 2 2 1 2
4 2 3 1 2
4 2 4 1 2
4 2 5 1 2
4 2 6 1 2
5 2 1 1 2
5 2 2 1 2
5 2 3 1 2
5 2 4 1 2
5 2 5 1 2
5 2 6 1 2

output:

1
-1
-1
-1
-1
-1
1
-1
-1
-1
-1
-1
1
-1
-1
-1
-1
-1
1
-1
-1
-1
-1
-1
1
-1
-1
-1
-1
-1

result:

ok 30 lines

Test #3:

score: 0
Accepted
time: 0ms
memory: 3552kb

input:

90
1 3 1 1 2
1 3 1 1 3
1 3 1 2 3
1 3 2 1 2
1 3 2 1 3
1 3 2 2 3
1 3 3 1 2
1 3 3 1 3
1 3 3 2 3
1 3 4 1 2
1 3 4 1 3
1 3 4 2 3
1 3 5 1 2
1 3 5 1 3
1 3 5 2 3
1 3 6 1 2
1 3 6 1 3
1 3 6 2 3
2 3 1 1 2
2 3 1 1 3
2 3 1 2 3
2 3 2 1 2
2 3 2 1 3
2 3 2 2 3
2 3 3 1 2
2 3 3 1 3
2 3 3 2 3
2 3 4 1 2
2 3 4 1 3
2 3 4 2...

output:

1
1
1
-1
1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
1
1
1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
1
1
1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
1
1
1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
1
1
1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1

result:

ok 90 lines

Test #4:

score: -100
Wrong Answer
time: 0ms
memory: 3608kb

input:

180
1 4 1 1 2
1 4 1 1 3
1 4 1 1 4
1 4 1 2 3
1 4 1 2 4
1 4 1 3 4
1 4 2 1 2
1 4 2 1 3
1 4 2 1 4
1 4 2 2 3
1 4 2 2 4
1 4 2 3 4
1 4 3 1 2
1 4 3 1 3
1 4 3 1 4
1 4 3 2 3
1 4 3 2 4
1 4 3 3 4
1 4 4 1 2
1 4 4 1 3
1 4 4 1 4
1 4 4 2 3
1 4 4 2 4
1 4 4 3 4
1 4 5 1 2
1 4 5 1 3
1 4 5 1 4
1 4 5 2 3
1 4 5 2 4
1 4 5 ...

output:

1
1
1
1
1
1
2
1
1
2
1
2
-1
-1
1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
1
1
1
1
1
1
1
2
3
1
2
1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
1
1
1
1
1
1
2
1
1
2
1
2
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
1
1
1
1
1
1
1...

result:

wrong answer 10th lines differ - expected: '3', found: '2'