結果
問題 | No.1501 酔歩 |
ユーザー | SSRS |
提出日時 | 2021-05-07 22:10:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,476 bytes |
コンパイル時間 | 5,106 ms |
コンパイル使用メモリ | 380,116 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-15 10:07:15 |
合計ジャッジ時間 | 13,114 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #include <boost/multiprecision/cpp_int.hpp> using namespace std; boost::multiprecision::cpp_int gcd(boost::multiprecision::cpp_int a, boost::multiprecision::cpp_int b){ if (b == 0){ return a; } else { return gcd(b, a % b); } } struct fraction{ boost::multiprecision::cpp_int num, den; fraction(){ } fraction(boost::multiprecision::cpp_int a, boost::multiprecision::cpp_int b){ boost::multiprecision::cpp_int g = gcd(a, b); num = a / g; den = b / g; } fraction operator +(fraction x){ return fraction(num * x.den + x.num * den, den * x.den); } fraction operator -(fraction x){ return fraction(num * x.den - x.num * den, den * x.den); } fraction operator *(fraction x){ return fraction(num * x.num, den * x.den); } fraction operator /(fraction x){ return fraction(num * x.den, den * x.num); } }; int main(){ int N, K; cin >> N >> K; vector<int> A(N); for (int i = 0; i < N; i++){ cin >> A[i]; } K--; if (K == 0){ cout << "0" << endl; } else if (K == N - 1){ cout << "1" << endl; } else { assert(false); vector<fraction> dp(N); dp[0] = fraction(0, 1); dp[1] = fraction(1, 1); for (int i = 2; i < N; i++){ dp[i] = fraction(A[i - 2] + A[i], A[i]) * dp[i - 1] - fraction(A[i - 2], A[i]) * dp[i - 2]; } fraction x = fraction(1, 1) / dp[N - 1]; fraction ans = x * dp[K]; cout << ans.num << "/" << ans.den << endl; } }