QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#105018#5505. Great ChasekingstonduyWA 1095ms3728kbC++141.7kb2023-05-12 20:43:282023-05-12 20:43:29

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-05-12 20:43:29]
  • 评测
  • 测评结果:WA
  • 用时:1095ms
  • 内存:3728kb
  • [2023-05-12 20:43:28]
  • 提交

answer

 #include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>

#define openr() freopen("input.txt","r",stdin)
#define openw() freopen("output.txt","w",stdout)
#define mp make_pair
#define fi first
#define se second
#define int long long int


using namespace std;
using namespace __gnu_pbds;
template <typename T>
using ordered_set=tree<T,null_type,less<T>,rb_tree_tag,tree_order_statistics_node_update>;

const int inf=1e18;
const int mod= 1000000007;


void show()
{
    int n,v;    cin>>n>>v;
    vector<pair<long double,long double>>a(n);
    for(int i=0;i<n;i++)
    {
        cin>>a[i].fi>>a[i].se;
    }
    sort(a.begin(), a.end());
    long double r= 1e12;
    long double l=0;
    long double res= 0;
    long double thres_hold= 1e-12;
    while(l <  r && r - l  > thres_hold){

        long double temp= l+r;
        long double mid= (l+r)/2.0;
        long double ls=-inf;
        long double rs= inf;
        for(int i=0;i<n;i++)
        {
            // fi pos
            // se vel
            long double dis= a[i].se * mid;
            if(a[i].fi < 0) ls= max(ls, a[i].fi + dis);
            else rs= min(rs, a[i].fi - dis);
        }
        if(ls < rs )
        {
            // tang time
            res= max(res, mid);
            l= mid+thres_hold;
        }
        else if(ls == rs)
        {
            res= mid;
            break;
        }
        else    {
            r= mid - thres_hold;
        }
    }
    cout<<fixed<<setprecision(10)<<res*v;
}

int32_t main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    //openr();
    int tc; cin>>tc;
    while(tc--)
    {
        show();
        cout<<"\n";
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 3608kb

input:

3
4 9
10 2
-7 2
-6 1
7 1
2 8
-1 7
1 6
2 3
-1000000000000 1
1000000000000 1

output:

38.2500000000
1.2307692308
3000000000000.0000000000

result:

ok 3 numbers

Test #2:

score: -100
Wrong Answer
time: 1095ms
memory: 3728kb

input:

10000
200 997007
405524182320 754760
686939601648 419804
687047488212 715566
1446157132 4594
-670522037 4673
763634629282 253755
424307411732 275041
1582708381 8473
-667425982 4622
-522841486 1427
702430907988 460271
1405423646 1060
1497754648 6227
883363410675 723547
56899800372 46435
-810216390 64...

output:

145405766328.3491099924
16414958969.7272803076
5202715639.8351830547
321977234.1563243745
45384199210.2216824219
183885744.7692307477
1708925225.2304710264
89786664971.5579418391
13924365606.2873880332
412975327.5555552948
965508404.5121003482
4703493416.2883760231
352961619.3810423455
5575125771.79...

result:

wrong answer 4566th numbers differ - expected: '1.0000010', found: '1.0000008', error = '0.0000002'