Recent Posts
Notice
No Rules Rules
장인은 도구를 탓하지 않는다 (feat. 백준, 25905번) 본문
728x90
반응형
장인은 도구를 탓하지 않는다
https://www.acmicpc.net/problem/25905
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <queue>
#include <vector>
#include <cmath>
#include <algorithm>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
priority_queue<double> q;
double ans = 1., tmp;
for(register int i = 0; i < 10; ++i)
cin >> tmp, q.push(tmp);
register int i = 1;
while(q.size() != 1)
ans *= (q.top() / i++), q.pop();
printf("%.06f", ans * pow(10, 9));
return 0;
}
// *&)*@*
반응형
낮은 강화에 높은 확률로 계산될수록 전체의 확률이 최대가 됩니다. 따라서 내림차순으로 정렬된 10개의 값중 9개의 값으로 확률을 구해줍니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
인공지능 시계 (feat. 백준, 2530번) (0) | 2022.11.01 |
---|---|
하노이 탑 (feat. 백준, 1914번) (0) | 2022.11.01 |
안녕 클레오파트라 세상에서 제일가는 포테이토칩 (feat. 백준, 25904번) (0) | 2022.10.31 |
파티 (feat. 백준, 1238번) (0) | 2022.10.27 |
쇠막대기 (feat. 백준, 10799번) (0) | 2022.10.27 |
Comments