結果

問題 No.2462 七人カノン
ユーザー cho435cho435
提出日時 2023-09-08 22:55:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 4,234 ms
コンパイル使用メモリ 265,032 KB
実行使用メモリ 8,432 KB
最終ジャッジ日時 2024-06-26 16:12:07
合計ジャッジ時間 11,846 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,912 KB
testcase_01 AC 6 ms
6,912 KB
testcase_02 AC 5 ms
6,784 KB
testcase_03 AC 11 ms
6,784 KB
testcase_04 AC 10 ms
6,784 KB
testcase_05 AC 10 ms
6,912 KB
testcase_06 AC 10 ms
6,912 KB
testcase_07 AC 10 ms
6,912 KB
testcase_08 AC 10 ms
6,784 KB
testcase_09 AC 10 ms
6,784 KB
testcase_10 AC 10 ms
6,912 KB
testcase_11 AC 10 ms
6,784 KB
testcase_12 AC 10 ms
6,912 KB
testcase_13 AC 138 ms
8,072 KB
testcase_14 AC 136 ms
8,196 KB
testcase_15 AC 128 ms
8,072 KB
testcase_16 AC 147 ms
8,312 KB
testcase_17 AC 150 ms
8,320 KB
testcase_18 AC 50 ms
7,264 KB
testcase_19 AC 52 ms
7,040 KB
testcase_20 AC 132 ms
8,296 KB
testcase_21 AC 132 ms
8,292 KB
testcase_22 AC 134 ms
8,432 KB
testcase_23 AC 133 ms
8,296 KB
testcase_24 AC 97 ms
7,668 KB
testcase_25 AC 146 ms
8,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using mint = atcoder::modint998244353;

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

int main(){
	int n,q;
	cin>>n>>q;
	vector<int> I(q),S(q),T(q);
	rep(i,q) cin>>I.at(i)>>S.at(i)>>T.at(i);
	rep(i,q) I.at(i)--;
	vector<ll> sm(1e5+1,0);
	rep(i,q){
		sm.at(S.at(i))++;
		sm.at(T.at(i))--;
	}
	rep(i,1e5) sm.at(i+1)+=sm.at(i);
	atcoder::segtree<double,op,e> seg(1e5);
	rep(i,1e5) if(sm.at(i)>0) seg.set(i,(double)1/sm.at(i));
	vector<double> ans(n,0);
	rep(i,q){
		ans.at(I.at(i))+=seg.prod(S.at(i),T.at(i));
	}
	cout<<fixed<<setprecision(10);
	rep(i,n) cout<<ans.at(i)<<"\n";
}
0