結果

問題 No.2462 七人カノン
ユーザー ldsybldsyb
提出日時 2023-09-08 22:47:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 1,100 bytes
コンパイル時間 4,315 ms
コンパイル使用メモリ 267,336 KB
実行使用メモリ 13,960 KB
最終ジャッジ日時 2024-06-26 16:03:09
合計ジャッジ時間 14,671 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,096 KB
testcase_01 AC 25 ms
9,876 KB
testcase_02 AC 32 ms
9,984 KB
testcase_03 AC 9 ms
10,096 KB
testcase_04 AC 8 ms
9,920 KB
testcase_05 AC 8 ms
9,884 KB
testcase_06 AC 9 ms
10,044 KB
testcase_07 AC 8 ms
10,052 KB
testcase_08 AC 8 ms
9,812 KB
testcase_09 AC 7 ms
10,016 KB
testcase_10 AC 8 ms
10,060 KB
testcase_11 AC 8 ms
10,004 KB
testcase_12 AC 8 ms
9,948 KB
testcase_13 AC 222 ms
13,172 KB
testcase_14 AC 259 ms
13,684 KB
testcase_15 AC 233 ms
13,172 KB
testcase_16 AC 259 ms
13,960 KB
testcase_17 AC 272 ms
13,956 KB
testcase_18 AC 184 ms
11,620 KB
testcase_19 AC 172 ms
11,556 KB
testcase_20 AC 262 ms
13,812 KB
testcase_21 AC 279 ms
13,892 KB
testcase_22 AC 260 ms
13,672 KB
testcase_23 AC 247 ms
13,908 KB
testcase_24 AC 217 ms
12,640 KB
testcase_25 AC 269 ms
13,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using namespace chrono;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif

long double op(long double a, long double b)
{
    return a + b;
}
long double e()
{
    return 0;
}

int main()
{
    int64_t n, q;
    cin >> n >> q;
    vector<int64_t> is(q), ss(q), ts(q);
    for (int64_t i = 0; i < q; i++)
    {
        cin >> is[i] >> ss[i] >> ts[i];
        is[i]--;
    }

    vector<int64_t> cnt(100001, 0);
    for (int64_t i = 0; i < q; i++)
    {
        cnt[ss[i]]++;
        cnt[ts[i]]--;
    }
    for (int64_t i = 1; i < cnt.size(); i++)
    {
        cnt[i] += cnt[i - 1];
    }

    vector<long double> xs(cnt.size(), 0);
    for (int64_t i = 0; i < cnt.size(); i++)
    {
        xs[i] = (long double)(1) / cnt[i];
    }

    segtree<long double, op, e> seg(xs);

    vector<long double> ans(n, 0);
    for (int64_t i = 0; i < q; i++)
    {
        ans[is[i]] += seg.prod(ss[i], ts[i]);
    }

    for (auto &&x : ans)
    {
        cout << fixed << setprecision(20) << x << endl;
    }

    return 0;
}
0