QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#625930 | #9427. Collect the Coins | wangjingheng | WA | 21ms | 9852kb | C++20 | 1.7kb | 2024-10-09 21:49:27 | 2024-10-09 21:49:28 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=1e6+10,mod=998244353;
pair<int,int> a[N];
int n,m,q;
int f[N],h[N],pre[N];
bool ck(int x,int y,int k){
auto [u1,v1]=a[x];
auto [u2,v2]=a[y];
if(abs(u1-u2)<=(v2-v1)*k) return true;
return false;
}
bool check(int x){
h[1]=1;
for(int i=1;i<n;i++){
h[i]=1;
if(f[i-1]) break;
}
for(int i=2;i<n;i++){
if(!f[i]){
if(pre[i]&&ck(pre[i],i+1,x)) h[i]|=h[pre[i]];
if(!f[i-1]) h[i]|=h[i-1];
else{
if(ck(i-1,i+1,x)) h[i]|=h[i-1];
}
}
else{
if(pre[i]&&ck(pre[i],i+1,x)) h[i]|=h[pre[i]];
if(ck(i-1,i+1,x)) h[i]|=h[i-1];
}
}
for(int i=n-1;i>=1;i--){
if(h[i]) return true;
if(f[i]) break;
}
return false;
}
void solve(){
cin>>n;
for(int i=1;i<=n;i++){
int x,y;cin>>x>>y;
a[i]={y,x};
}
if(n==1||n==2){
cout<<"0\n";return;
}
for(int i=3;i<=n;i++){
if(a[i-2].second==a[i-1].second&&a[i-1].second==a[i].second){
cout<<"-1\n";return ;
}
}
int l=0,r=1e9;
while(l<r){
for(int i=1;i<=n;i++) f[i]=0;
int mid=(l+r)/2,pr=0;
for(int i=1;i<n;i++){
h[i]=0;
pre[i]=pr;
if(abs(a[i].first-a[i+1].first)-(a[i+1].second-a[i].second)*mid>0) f[i]=1,pr=i;
else f[i]=0;
}
if(check(mid)){
r=mid;
}
else l=mid+1;
}
cout<<l<<"\n";
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);cout.tie(0);
int T;cin>>T;
while(T--)
solve();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 9852kb
input:
3 5 1 1 3 7 3 4 4 3 5 10 1 10 100 3 10 100 10 1000 10 10000
output:
2 0 -1
result:
ok 3 lines
Test #2:
score: -100
Wrong Answer
time: 21ms
memory: 9848kb
input:
1135 2 6 5 8 8 8 2 9 2 10 4 4 5 3 6 2 6 8 8 2 8 7 1 9 1 6 4 6 6 1 6 2 9 10 10 1 10 7 5 1 6 2 5 6 7 8 6 10 3 8 1 10 5 4 5 7 6 1 6 6 8 4 9 1 9 4 8 1 1 1 3 2 9 3 3 5 9 6 10 9 7 10 7 3 5 8 6 6 10 6 7 2 9 4 7 5 10 6 3 6 7 8 9 10 1 6 1 4 2 8 5 9 7 10 9 1 10 5 9 2 7 4 5 5 9 6 10 7 4 9 4 9 9 10 3 10 7 1 3 1...
output:
0 1 0 3 1 2 1 0 3 2 2 0 2 0 0 0 5 1 1 0 0 0 1 4 2 0 2 1 1 0 1 1 2 2 5 3 0 0 0 1 1 1 0 2 0 0 0 1 0 2 1 0 1 1 3 4 1 1 0 0 0 3 0 1 4 3 2 0 0 2 2 2 4 2 0 0 0 1 0 2 1 0 0 0 1 2 0 0 0 2 0 2 0 1 2 1 1 0 0 0 5 1 1 0 6 1 0 0 1 2 2 0 3 1 4 3 6 0 5 0 0 3 0 2 2 2 1 1 0 0 0 7 2 2 1 0 0 3 1 1 0 1 2 3 3 0 2 3 1 5 ...
result:
wrong answer 2nd lines differ - expected: '3', found: '1'