結果
| 問題 |
No.1501 酔歩
|
| コンテスト | |
| ユーザー |
nok0
|
| 提出日時 | 2021-05-07 22:16:19 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 182 ms / 2,000 ms |
| コード長 | 1,077 bytes |
| コンパイル時間 | 2,031 ms |
| コンパイル使用メモリ | 194,440 KB |
| 最終ジャッジ日時 | 2025-01-21 08:20:25 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 53 |
ソースコード
#include <bits/stdc++.h>
struct rational {
public:
rational() = default;
rational(long long x, long long y) : x(x), y(y) {}
rational& operator+=(const rational& oth) {
auto [z, w] = oth;
auto ny = y / std::gcd(y, w) * w;
auto nx = ny / y * x + ny / w * z;
x = nx, y = ny;
reduction();
return *this;
}
rational& operator/=(const rational& oth) {
auto [z, w] = oth;
x *= w, y *= z;
reduction();
return *this;
}
rational operator/(rational oth) {
return rational(*this) /= oth;
}
friend std::ostream& operator<<(std::ostream& s, rational a) {
if(a.x == 0 and a.y == 1)
s << '0';
else
s << a.x << '/' << a.y;
return s;
}
private:
long long x, y;
void reduction() {
long long g = std::gcd(x, y);
x /= g, y /= g;
}
};
int n, k;
int a[100000];
int main() {
std::cin >> n >> k;
for(int i = 0; i < n; i++) std::cin >> a[i];
auto f = [&](int x) {
rational res(0, 1);
for(int i = 0; i < x; i++)
res += rational(1, a[i] * a[i + 1]);
return res;
};
std::cout << (n != 1 ? f(--k) / f(--n) : rational(1, 1)) << '\n';
}
nok0