結果

問題 No.2462 七人カノン
ユーザー hiro71687khiro71687k
提出日時 2023-09-08 21:46:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 1,342 bytes
コンパイル時間 5,048 ms
コンパイル使用メモリ 266,988 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-06-26 14:42:30
合計ジャッジ時間 19,221 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,656 KB
testcase_01 AC 4 ms
6,656 KB
testcase_02 AC 4 ms
6,656 KB
testcase_03 AC 10 ms
6,784 KB
testcase_04 AC 10 ms
6,656 KB
testcase_05 AC 10 ms
6,656 KB
testcase_06 AC 10 ms
6,656 KB
testcase_07 AC 9 ms
6,784 KB
testcase_08 AC 8 ms
6,656 KB
testcase_09 AC 8 ms
6,784 KB
testcase_10 AC 9 ms
6,784 KB
testcase_11 AC 10 ms
6,784 KB
testcase_12 AC 10 ms
6,784 KB
testcase_13 AC 413 ms
12,964 KB
testcase_14 AC 471 ms
13,076 KB
testcase_15 AC 420 ms
12,744 KB
testcase_16 AC 487 ms
13,820 KB
testcase_17 AC 474 ms
13,820 KB
testcase_18 AC 262 ms
8,192 KB
testcase_19 AC 252 ms
8,320 KB
testcase_20 AC 500 ms
13,544 KB
testcase_21 AC 516 ms
13,672 KB
testcase_22 AC 545 ms
13,692 KB
testcase_23 AC 501 ms
13,540 KB
testcase_24 AC 399 ms
11,108 KB
testcase_25 AC 540 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=1000000007;
ll inf=10090000000000000;
int main(){
    ll n,q;
    cin >> n >> q;
    vector<ll>x(q),s(q),t(q);
    priority_queue<pair<ll,ll>,vector<pair<ll,ll>>,greater<pair<ll,ll>>>pq;
    for (ll i = 0; i < q; i++)
    {
        cin >> x[i] >> s[i]>> t[i];
        x[i]--;
        pq.push({s[i],1});
        pq.push({t[i],-1});
    }
    ld y=0;
    vector<ld>memo(100001,-1);
    while (!pq.empty())
    {
        pair<ll,ll>p=pq.top();
        pq.pop();
        y+=p.second;
        if (y==0)
        {
            memo[p.first]=0;
            continue;
        }
        memo[p.first]=1.0/y;
    }
    for (ll i = 1; i < memo.size(); i++)
    {
        if (memo[i]==-1)
        {
            memo[i]=memo[i-1];
        }
    }
    vector<ld>wa(memo.size(),0);
    wa[0]=memo[0];
    for (ll i = 1; i < wa.size(); i++)
    {
        wa[i]=wa[i-1]+memo[i];
    }
    vector<ld>ans(n,0);
    for (ll i = 0; i < q; i++)
    {
        if (s[i]==0)
        {
            ans[x[i]]+=wa[t[i]-1];
        }else{
            ans[x[i]]+=wa[t[i]-1]-wa[s[i]-1];
        }
    }
    for (ll i = 0; i < n; i++)
    {
        cout << setprecision(100) << ans[i] << endl;
    }
    
}
0