QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#131698#5505. Great ChasehanoAC ✓1900ms20192kbC++141007b2023-07-27 21:36:402023-07-27 21:36:42

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-07-27 21:36:42]
  • 评测
  • 测评结果:AC
  • 用时:1900ms
  • 内存:20192kb
  • [2023-07-27 21:36:40]
  • 提交

answer

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

long double eps = 1e-18;

int main(){
	ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
	cout<<fixed<<setprecision(20);
	int t;
	cin>>t;
	while(t--){
		vector<pair<long long, long long > > cleft, cright;
		long long v;
		long long n;
		cin>>n>>v;
		for(int i=0;i<n;i++){
			long long x,y;
			cin>>x>>y;
			if(x < 0){
				cleft.push_back({x, y});
			}else{
				cright.push_back({x, y});
			}
		}
		long double l=eps, r=1e12+eps;
		long double ans = l;
		for(int kh=0;kh<300;kh++){
			long double mid = (r+l)/2.0;
			long double mxl = -1e12, mnr = 1e12;
			for(int i=0;i<(int)cleft.size();i++){
				mxl = max(mxl, mid * cleft[i].second + cleft[i].first);
			}
			for(int i=0;i<(int)cright.size();i++){
				mnr = min(mnr, -mid * cright[i].second + cright[i].first);
			}
			if(mxl >= mnr){
				r = mid - eps;
			}else{
				ans = max(ans, mid);
				l = mid + eps;
			}
		}
		cout<<ans*v<<'\n';
	}
	
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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.24999999999999999653
1.23076923076923076914
2999999999999.99999976158142089844

result:

ok 3 numbers

Test #2:

score: 0
Accepted
time: 1553ms
memory: 3848kb

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.34911002218723297119
16414958969.72728119045495986938
5202715639.83518389984965324402
321977234.15632586894207634032
45384199210.22168397158384323120
183885744.76923076921957544982
1708925225.23047235782723873854
89786664971.55794262886047363281
13924365606.28738879412412643433
41297532...

result:

ok 10000 numbers

Test #3:

score: 0
Accepted
time: 1900ms
memory: 4384kb

input:

93
15435 968117
4196666 184
-5069875 255
-9782648 980
-1978138 176
9333323 764
-4323540 12
-8442049 319
-5371878 137
2881306 10
-4050629 133
-4659099 59
-5189169 320
-2256647 99
-3686648 37
1059255 33
-223142 20
8040933 408
8407764 705
694547 38
-7913614 746
-3573355 132
5919585 189
-3756662 94
-795...

output:

189662921.36363636363239493221
197971181.33333333332848269492
997533531.73762959236046299338
6439673170.66574178449809551239
993821598110.66107779741287231445
22727977326.40266098640859127045
34702455207.51850402727723121643
677770533.92981749866157770157
46631726883.96913323178887367249
5446481867....

result:

ok 93 numbers

Test #4:

score: 0
Accepted
time: 1870ms
memory: 20192kb

input:

5
400000 999972
172811492468 106699
171900177092 102097
194121748377 184014
190302947556 172722
183121572232 149212
196566712700 190884
171376795991 99358
522927044000 159597
-129031052077 34395
189422320931 170012
-275879974024 638546
408864707565 98475
-106703244806 368801
192128798630 178213
2915...

output:

519985220219.81177088618278503418
511413015796.76647534966468811035
424240880533.63402029871940612793
518849481155.50391876697540283203
1882496988186.44399988651275634766

result:

ok 5 numbers

Test #5:

score: 0
Accepted
time: 1875ms
memory: 8588kb

input:

38
16668 999947
-3844782803 511
-210897941456 464872
618726004990 714384
-954596898686 225256
96675744 1148
-1515974078 11375
-206213840984 706184
306078847 3947
-474818331950 391451
-616022698917 561244
123378707 1540
-640636592655 406006
459201391325 908506
-733249583 5719
496163273 6238
619876911...

output:

89670748252.97860801219940185547
98630840901.50760695338249206543
29393530999.89432778768241405487
50801000770.95598541945219039917
39668001027.26933133974671363831
467846478226.41137081384658813477
30789914370.57431161217391490936
23151476830.90509843267500400543
51606123416.62582759186625480652
15...

result:

ok 38 numbers