QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#620384 | #9251. Graph Changing | ucup-team5071 | WA | 0ms | 3656kb | C++14 | 1.2kb | 2024-10-07 17:52:37 | 2024-10-07 17:52:37 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
bool ava(int a,int b,int c){
return abs(b-a) >= c;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int q;
cin >> q;
while(q--){
int t,n,k,x,y;
cin >> t >> n >> k >> x >> y;
int dis;
if (x > y) swap(x,y);
if (t == 0) {
cout << y-x << "\n";
continue;
}
if (k == 1){
cout << 1 << "\n";
} else if (k >= n) {
dis = -1;
} else if (y-x >= k){
dis = 1;
} else {
if (ava(x,n,k) && ava(y,n,k)){
dis = 2;
} else if (ava(x,1,k) && ava(y,1,k)){
dis = 2;
} else {
bool flag1 = (ava(x,1,k) || ava(x,n,k));
bool flag2 = (ava(y,1,k) || ava(y,n,k));
if (flag1 && flag2) {
dis = 3;
} else {
dis = -1;
}
}
}
if (dis == -1) {
cout << -1 << "\n"; continue;
} else if (t == 1){
cout << dis << "\n"; continue;
}else if (t == 2){
if (dis >= k) {
cout << 1 << "\n"; continue;
} else {
cout << -1 << "\n"; continue;
}
} else {
if (k == 2){
if (t & 1){
cout << ((y-x==1)? 2 : 1)<< "\n"; continue;
} else {
cout << y-x << "\n"; continue;
}
} else {
cout << -1 << "\n"; continue;
}
}
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3656kb
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: -100
Wrong Answer
time: 0ms
memory: 3592kb
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 0 -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:
wrong answer 2nd lines differ - expected: '-1', found: '0'