結果

問題 No.2352 Sharpened Knife in Fall
ユーザー tsugutsugutsugutsugu
提出日時 2023-06-17 01:42:48
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 508 ms / 3,000 ms
コード長 819 bytes
コンパイル時間 3,052 ms
コンパイル使用メモリ 244,208 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-24 19:27:49
合計ジャッジ時間 16,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 423 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 508 ms
5,376 KB
testcase_07 AC 252 ms
5,376 KB
testcase_08 AC 502 ms
5,376 KB
testcase_09 AC 504 ms
5,376 KB
testcase_10 AC 500 ms
5,376 KB
testcase_11 AC 504 ms
5,376 KB
testcase_12 AC 503 ms
5,376 KB
testcase_13 AC 499 ms
5,376 KB
testcase_14 AC 237 ms
5,376 KB
testcase_15 AC 465 ms
5,376 KB
testcase_16 AC 26 ms
5,376 KB
testcase_17 AC 13 ms
5,376 KB
testcase_18 AC 178 ms
5,376 KB
testcase_19 AC 396 ms
5,376 KB
testcase_20 AC 156 ms
5,376 KB
testcase_21 AC 146 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#ifdef LOCAL
#include "debug.hpp"
#else
#define debug(...) 1
#endif

const double PI = acos(-1);

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    double R, K;
    cin >> R >> K;
    auto f = [&] (double x) -> double {
        return (x * sqrt(R * R - x * x) + R * R * asin(x / R)) / 2.0;
    };
    double fr = f(-R);
    for (int i = 1; i <= K; i++) {
        double x = (R * R * PI) / 2.0 / (K + 1) * (double) i;
        double left = -R, right = R;
        int cnt = 100;
        while (cnt--) {
            double mid = (left + right) / 2;
            if (f(mid) - fr <= x) {
                left = mid;
            } else{
                right = mid;
            }
        }
        cout << fixed << setprecision(15) << left << '\n';
    }
}
0