Challenge
Careers
Class
Connect
로그인 후 문제풀이가 가능합니다.
3번 케이스만 실패하네요 ㅠㅠ
다른 질문에서 반올림 이슈 등 소수점 문제로 보였는데, 아래 처럼해도 3번만 틀리네요. math.floor(prob * 1000 + 0.5) / 1000.0
[cpp] 테스트케이스 3번만 틀려요
#include<iostream> #include <vector> #include <algorithm> #include <cmath> using namespace std; // 0 win // 1 lose // 2 draw pair<int, int> arr[7] = { {0, 0}, {1, 2}, {1, 3}, {1, 4}, {2, 3}, {2, 4}, {3, 4} }; double ans; double F[6]; double prob[6][6][3]; void dfs(int k, int rst, double tot, vector<int>& score) { int a = arr[k].first; int b = arr[k].second; double p = (rst == -1) ? 1.0 : prob[a][b][rst]; vector<int> tmp = score; if (rst == 0) score[a] += 3; else if (rst == 1) score[b] += 3; e...
완전 탐색인데 Subtask 1-3 안되는 이유가 잘 이해가 안가요
import sys F_1, F_2, F_3, F_4 = map(int, input().split()) case = [] case_detail = [] A_case = [3, 1, 0] B_case = [3, 1, 0] C_case = [3, 1, 0] D_case = [3, 1, 0] E_case = [3, 1, 0] F_case = [3, 1, 0] for a in A_case: for b in B_case: for c in C_case: for d in D_case: for e in E_case: for f in F_case: pt = [0,0,0,0] if a == 3: ...