No Rules Rules

장인은 도구를 탓하지 않는다 (feat. 백준, 25905번) 본문

생활/코테

장인은 도구를 탓하지 않는다 (feat. 백준, 25905번)

개발하는 완두콩 2022. 10. 31. 12:33
728x90
반응형

장인은 도구를 탓하지 않는다
https://www.acmicpc.net/problem/25905

 

25905번: 장인은 도구를 탓하지 않는다

BaekJoonOnline은 프로그래밍 언어를 사용하여 퀴즈를 푸는 정말정말 흥미로운 게임이다. 하지만 실력에 정체기가 온 성현이는 자신의 실력을 도구 탓으로 돌리고 노트북을 강화하기로 하였다. 주

www.acmicpc.net

 

// 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
반응형
Comments