結果

問題 No.2462 七人カノン
ユーザー shobonvipshobonvip
提出日時 2023-09-08 22:13:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 2,000 ms
コンパイル使用メモリ 204,480 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-26 15:17:43
合計ジャッジ時間 9,654 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 5 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 5 ms
6,944 KB
testcase_13 AC 117 ms
6,944 KB
testcase_14 AC 126 ms
6,940 KB
testcase_15 AC 118 ms
6,944 KB
testcase_16 AC 133 ms
6,940 KB
testcase_17 AC 132 ms
6,944 KB
testcase_18 AC 48 ms
6,944 KB
testcase_19 AC 50 ms
6,940 KB
testcase_20 AC 121 ms
6,940 KB
testcase_21 AC 120 ms
6,944 KB
testcase_22 AC 123 ms
6,940 KB
testcase_23 AC 127 ms
6,944 KB
testcase_24 AC 94 ms
6,944 KB
testcase_25 AC 137 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
	int n, q; cin >> n >> q;
	const int mx = 100003;
	vector<int> I(q), S(q), T(q);
	vector<int> imos(mx);
	for(int i=0; i<q; i++){
		cin >> I[i] >> S[i] >> T[i];
		I[i]--;
		imos[S[i]]++;
		imos[T[i]]--;
	}
	for(int i=0; i<mx-1; i++){
		imos[i+1] += imos[i];
	}
	vector<double> rui(mx+1);
	for(int i=0; i<mx; i++){
		if (imos[i] > 0){
			rui[i+1] = rui[i] + (double)1 / imos[i];
		}else{
			rui[i+1] = rui[i];
		}
	}
	vector<double> ans(n);
	for (int i=0; i<q; i++){
		ans[I[i]] += rui[T[i]] - rui[S[i]];
	}
	cout << fixed << setprecision(15);
	for (int i=0; i<n; i++){
		cout << ans[i] << '\n';
	}
}
0