結果
問題 | No.2462 七人カノン |
ユーザー | futamegawa |
提出日時 | 2023-09-09 14:05:13 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,243 bytes |
コンパイル時間 | 3,093 ms |
コンパイル使用メモリ | 256,876 KB |
実行使用メモリ | 16,676 KB |
最終ジャッジ日時 | 2024-06-27 07:00:39 |
合計ジャッジ時間 | 7,607 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#include <bits/stdc++.h> using ll = long long; using llu = long long unsigned; using namespace std; #define MOD 998244353 int main() { int N, Q; cin >> N >> Q; vector<int> I(Q), S(Q), T(Q); map<int, int> data; for (int i=0; i<Q; i++) { cin >> I[i] >> S[i] >> T[i]; data[S[i]-1]++; data[S[i]]++; data[S[i]+1]++; data[T[i]-1]++; data[T[i]]++; data[T[i]+1]++; } int stop = *max_element(T.begin(), T.end()); vector<double> meda(stop+2); for (auto itr=data.begin(); itr!=data.end(); itr++) { int tmp = itr->first; if (tmp < 0) { continue; } int cnt = 0; for (int i=0; i<Q; i++) { if (S[i]<=tmp && tmp<=T[i]) { cnt++; } } meda[tmp] = 1.0/cnt; } vector<double> ret(N, 0.0); for (int i=0; i<Q; i++) { double tmp=0.0; double prev=0.0; for (int j=S[i]; j<T[i]; j++) { if (meda[j]==0.0) { tmp+=prev; } else { tmp += meda[j]; prev = meda[j]; } } ret[I[i]-1] += tmp; } for (auto x : ret) { printf("%.11f\n", x); } return 0; }