結果
問題 | No.813 ユキちゃんの冒険 |
ユーザー | leaf_1415 |
提出日時 | 2019-04-16 02:39:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 905 bytes |
コンパイル時間 | 530 ms |
コンパイル使用メモリ | 56,484 KB |
実行使用メモリ | 19,164 KB |
最終ジャッジ日時 | 2024-06-10 15:11:23 |
合計ジャッジ時間 | 1,508 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 4 ms
8,336 KB |
testcase_03 | WA | - |
testcase_04 | AC | 15 ms
18,628 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 13 ms
17,528 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1 ms
6,944 KB |
testcase_25 | AC | 18 ms
18,280 KB |
ソースコード
#include <iostream> #include <stdio.h> using namespace std; int n; long double p, q; long double mat[1005][1005]; void swap(int i, int j) { for(int k = 1; k <= n+1; k++){ long double t = mat[i][k]; mat[i][k] = mat[j][k]; mat[j][k] = t; } } int main(void) { cin >> n >> p >> q; for(int i = 1; i <= n; i++){ for(int j = 1; j <= n; j++){ if(i==j) mat[i][j] = 1; if(i+1==j) mat[i][j] = -q; if(i==j+1) mat[i][j] = -p; } } mat[1][n+1] = p; for(int i = 1; i <= n; i++){ long double div = mat[i][i]; for(int j = i; j <= i+1; j++) if(j <= n) mat[i][j] /= div; mat[i][n+1] /= div; for(int j = 1; j <= i+1; j++){ if(j+1 > n) continue; long double coe = mat[j][i]; if(i == j) continue; for(int k = i; k <= i+1; k++){ if(k <= n) mat[j][k] -= coe * mat[i][k]; } mat[j][n+1] -= coe * mat[i][n+1]; } } printf("%.11Lf\n", mat[1][n+1]); return 0; }