QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#601517#9427. Collect the Coinsucup-team3474WA 21ms8144kbC++201.7kb2024-09-30 03:44:102024-09-30 03:44:10

Judging History

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

  • [2024-11-06 15:56:27]
  • hack成功,自动添加数据
  • (/hack/1139)
  • [2024-09-30 03:44:10]
  • 评测
  • 测评结果:WA
  • 用时:21ms
  • 内存:8144kb
  • [2024-09-30 03:44:10]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
const int N=1919810;
typedef long long ll;
typedef pair<ll,ll> PII;
ll n,m,k;
ll a[N],b[N];
ll w[N],c[N];


bool gao(ll p,ll t,ll w,ll c,ll v){
    if(t==-1) return true;
    ll dis=w-t;
    ll l=p-dis*v,r=p+dis*v;
    if(c>=l&&c<=r) return true;
    return false;
}

bool check(ll mid){
    ll p1=-1,t1=-1;
    ll p2=-1,t2=-1;
    vector<int> v;
    for(int i=1;i<=n;i++){
        
        bool flag1=gao(p1,t1,w[i],c[i],mid),flag2=gao(p2,t2,w[i],c[i],mid);
        if(!v.size()){
            if(flag1&&flag2) v.push_back(i);
            else if(flag1){
                p1=c[i];
                t1=w[i];
            }else if(flag2){
                p2=c[i];
                t2=w[i];
            }else return false;
        }else{
            int tt=v.back();
            if(gao(c[tt],w[tt],w[i],c[i],mid)) v.push_back(i);
            else{
                if(flag1){
                    p1=c[i],t1=w[i];
                    p2=c[tt],t2=w[tt];
                    v.clear();
                }else if(flag2){
                    
                    p2=c[i],t2=w[i];
                    p1=c[tt],t1=w[tt];
                }else return false;
            }
        }
    }
    // cout<<114514<<endl;
    return true;
}

void __(){
    cin>>n;
    for(int i=1;i<=n;i++) scanf("%lld%lld",&w[i],&c[i]);
    ll l=0,r=2e9;
    if(!check(r)){
        puts("-1");
        return;
    }
    // check(4);
    while(l<r){
        ll mid=l+r>>1;
        if(check(mid)) r=mid;
        else l=mid+1;
    }
    printf("%lld\n",l);
}


int main(){
    int _=1;
    cin>>_;
    while(_--){
        __();
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 5844kb

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: 8144kb

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
3
0
3
1
3
6
0
3
2
2
0
2
5
0
1
5
1
2
0
0
0
1
4
2
0
2
1
3
0
3
2
3
2
5
3
1
1
0
1
1
1
0
2
0
1
0
1
0
2
1
0
2
3
4
4
1
1
1
0
1
3
0
1
4
4
3
0
0
2
2
6
4
2
1
0
0
1
0
2
1
2
0
1
1
3
0
0
1
2
0
3
0
2
2
2
1
0
0
0
5
1
2
0
6
1
1
1
2
2
2
0
3
1
4
3
6
0
8
1
1
3
0
2
2
4
1
1
0
0
0
7
2
2
1
0
0
3
1
2
1
1
2
5
3
0
3
3
3
5
...

result:

wrong answer 174th lines differ - expected: '4', found: '3'