結果

問題 No.2462 七人カノン
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-21 23:57:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 847 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 204,352 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-10-21 23:57:36
合計ジャッジ時間 12,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,820 KB
testcase_01 AC 4 ms
6,820 KB
testcase_02 AC 4 ms
6,816 KB
testcase_03 AC 7 ms
6,820 KB
testcase_04 AC 7 ms
6,816 KB
testcase_05 AC 6 ms
6,820 KB
testcase_06 AC 6 ms
6,816 KB
testcase_07 AC 6 ms
6,820 KB
testcase_08 AC 6 ms
6,816 KB
testcase_09 AC 5 ms
6,820 KB
testcase_10 AC 7 ms
6,820 KB
testcase_11 AC 7 ms
6,816 KB
testcase_12 AC 6 ms
6,820 KB
testcase_13 AC 187 ms
7,680 KB
testcase_14 AC 223 ms
8,192 KB
testcase_15 AC 187 ms
7,936 KB
testcase_16 AC 232 ms
8,320 KB
testcase_17 AC 230 ms
8,320 KB
testcase_18 AC 188 ms
6,912 KB
testcase_19 AC 178 ms
7,040 KB
testcase_20 AC 218 ms
8,192 KB
testcase_21 AC 212 ms
8,192 KB
testcase_22 AC 227 ms
8,192 KB
testcase_23 AC 212 ms
8,192 KB
testcase_24 AC 231 ms
7,552 KB
testcase_25 AC 224 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ld = long double;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    /*
       時刻iに演奏している人の数C(i)を求める。
       j=S~T-1について1/C(j)を足す。
    */

    int N, Q;
    cin >> N >> Q;
    vector<int> I(Q), S(Q), T(Q), C(1e5+1);
    for (int i=0; i<Q; i++){
        cin >> I[i] >> S[i] >> T[i];
        C[S[i]] += 1;
        C[T[i]] -= 1;
    }
    for (int i=1; i<=1e5; i++) C[i] += C[i-1];
    vector<ld> D(1e5+1), ans(N+1);
    for (int i=0; i<1e5; i++){
        if (C[i] >= 1) D[i] += 1.l / C[i];
        D[i+1] += D[i];
    }

    for (int i=0; i<Q; i++){
        ans[I[i]] += D[T[i]-1]-(S[i]>=1 ? D[S[i]-1] : 0);
    }
    for (int i=1; i<=N; i++){
        cout << setprecision(18) << ans[i] << endl;
    }

    return 0;
}
0