QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#620802#9427. Collect the CoinsjohntimeWA 47ms3800kbC++141.3kb2024-10-07 21:23:592024-10-07 21:23:59

Judging History

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

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

answer

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
int n;
vector<ll> t,d;
bool check(ll w){
    pair<ll,ll> p1={0,1e9},p2={0,1e9};
    for(int i=1;i<=n;i++){
        p1={max(p1.first-(t[i]-t[i-1])*w,0ll),min(p1.second+(t[i]-t[i-1])*w,(ll)1e9)};
        p2={max(p2.first-(t[i]-t[i-1])*w,0ll),min(p2.second+(t[i]-t[i-1])*w,(ll)1e9)};
        if(p1.first<=d[i]&&d[i]<=p1.second){
            if(p2.first<=d[i]&&d[i]<=p2.second){
                p1={d[i],d[i]};
                p2={min(p1.first,p2.first),max(p1.second,p2.second)};
            }else{
                p1={d[i],d[i]};
            }
        }else{
            if(p2.first<=d[i]&&d[i]<=p2.second){
                p2={d[i],d[i]};
            }else{
                return false;
            }
        }
    }
    return true;
}
void work()
{
    cin >> n;
    t.resize(n + 1);
    d.resize(n + 1);
    for (int i = 1; i <= n; i++)
    {
        cin >> t[i] >> d[i];
    }
    t[0]=0;
    d[0]=0;
    ll l=0,r=1e9;
    while(l<r){
        ll mid=(l+r)/2;
        if(check(mid)){
            r=mid;
        }else{
            l=mid+1;
        }
    }
    if(l==1e9){
        cout<<-1<<endl;
        return;
    }
    cout<<l<<endl;
}
int main()
{
    int t;
    cin >> t;
    while (t--)
    {
        work();
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 47ms
memory: 3800kb

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
3
1
0
0
2
0
3
1
2
0
1
5
3
0
0
1
2
0
3
0
2
2
2
1
0
0
0
5
2
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 74th lines differ - expected: '2', found: '3'