Submission #964296

# Submission time Handle Problem Language Result Execution time Memory
964296 2024-04-16T15:13:54 Z pcc Sure Bet (CEOI17_sure) C++17
0 / 100
1 ms 348 KB
#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define pll pair<ll,ll>
#define pii pair<int,int>
#define fs first
#define sc second
#define tlll tuple<ll,ll,ll>
#define int ll

const int mxn = 1e5+10;

ll N;
ll arr[mxn],brr[mxn];

main(){
	scanf("%d",&N);
	for(int i = 1;i<=N;i++){
		float f;
		scanf("%f",&f);
		arr[i] = f*10000;
		scanf("%f",&f);
		brr[i] = f*10000;
	}
	sort(arr+1,arr+N+1,greater<ll>());
	sort(brr+1,brr+N+1,greater<ll>());
	for(int i = 1;i<=N;i++){
		arr[i] += arr[i-1];
		brr[i] += brr[i-1];
	}
	ll ans = 0;
	for(int i = 1;i<=N;i++){
		ll l = 0,r = i;
		while(l != r){
			int mid = (l+r+1)>>1;
			if(arr[mid]>brr[i-mid])r = mid-1;
			else l = mid;
		}
		ans = max(ans,min(arr[l],brr[i-l])-i*10000);
		l++;
		for(int j = -2;j<=2;j++){
			auto l = r+j;
			if(l<=i)ans = max(ans,min(arr[l],brr[i-l])-i*10000);
		}
	}
	printf("%.4lf",(double)ans/10000);
	return 0;
}

Compilation message

sure.cpp:17:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   17 | main(){
      | ^~~~
sure.cpp: In function 'int main()':
sure.cpp:18:10: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=]
   18 |  scanf("%d",&N);
      |         ~^  ~~
      |          |  |
      |          |  long long int*
      |          int*
      |         %lld
sure.cpp:18:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   18 |  scanf("%d",&N);
      |  ~~~~~^~~~~~~~~
sure.cpp:21:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   21 |   scanf("%f",&f);
      |   ~~~~~^~~~~~~~~
sure.cpp:23:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   23 |   scanf("%f",&f);
      |   ~~~~~^~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 1 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 1 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 1 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -