답안 #46290

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
46290 2018-04-19T00:59:27 Z RezwanArefin01 Sure Bet (CEOI17_sure) C++17
0 / 100
2 ms 476 KB
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef pair<int, int> ii; 

const int N = 1e5 + 10; 
double a[N], b[N];

int main(int argc, char const *argv[]) {
	int n; cin >> n; 
	for(int i = 1; i <= n; i++) cin >> a[i];
	for(int i = 1; i <= n; i++) cin >> b[i]; 
	sort(a + 1, a + n + 1, greater<double>());
	sort(b + 1, b + n + 1, greater<double>()); 
	for(int i = 1; i <= n; i++) a[i] += a[i - 1];
	for(int i = 1; i <= n; i++) b[i] += b[i - 1]; 

	double ans = 0; 
	for(int i = 0; i <= n; i++) {
		for(int j = 0; j <= n; j++) {
			ans = max(ans, min(a[i], b[j]) - i - j); 
		}
	}
	printf("%.4f\n", ans);
}
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
3 Incorrect 2 ms 476 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
3 Incorrect 2 ms 476 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
3 Incorrect 2 ms 476 KB Output isn't correct
4 Halted 0 ms 0 KB -