結果
問題 | No.2462 七人カノン |
ユーザー | nonon |
提出日時 | 2023-09-08 21:58:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 197 ms / 2,000 ms |
コード長 | 2,869 bytes |
コンパイル時間 | 4,520 ms |
コンパイル使用メモリ | 263,684 KB |
実行使用メモリ | 11,112 KB |
最終ジャッジ日時 | 2024-06-26 14:58:01 |
合計ジャッジ時間 | 12,754 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
8,676 KB |
testcase_01 | AC | 3 ms
7,908 KB |
testcase_02 | AC | 3 ms
7,912 KB |
testcase_03 | AC | 6 ms
8,680 KB |
testcase_04 | AC | 6 ms
9,060 KB |
testcase_05 | AC | 6 ms
8,552 KB |
testcase_06 | AC | 5 ms
8,424 KB |
testcase_07 | AC | 5 ms
8,424 KB |
testcase_08 | AC | 5 ms
8,168 KB |
testcase_09 | AC | 5 ms
8,808 KB |
testcase_10 | AC | 5 ms
8,928 KB |
testcase_11 | AC | 6 ms
8,424 KB |
testcase_12 | AC | 6 ms
8,680 KB |
testcase_13 | AC | 166 ms
10,596 KB |
testcase_14 | AC | 190 ms
10,856 KB |
testcase_15 | AC | 171 ms
10,472 KB |
testcase_16 | AC | 188 ms
10,988 KB |
testcase_17 | AC | 196 ms
11,112 KB |
testcase_18 | AC | 161 ms
8,804 KB |
testcase_19 | AC | 163 ms
9,312 KB |
testcase_20 | AC | 191 ms
10,860 KB |
testcase_21 | AC | 180 ms
10,980 KB |
testcase_22 | AC | 190 ms
10,984 KB |
testcase_23 | AC | 187 ms
11,112 KB |
testcase_24 | AC | 178 ms
10,220 KB |
testcase_25 | AC | 197 ms
10,980 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using ull = unsigned long long; using db = long double; using ch = char; using bl = bool; using st = string; using pll = pair<ll,ll>; using psl = pair<st,ll>; using vst = vector<st>; using vch = vector<ch>; using vvch = vector<vch>; using vbl = vector<bl>; using vvbl = vector<vbl>; using vdb = vector<db>; using vpll = vector<pll>; using vvpll = vector<vpll>; using vpsl = vector<psl>; using vi = vector<int>; using vvi = vector<vi>; using vvvi = vector<vvi>; using vvvvi = vector<vvvi>; using vll = vector<ll>; using vvll = vector<vll>; using vvvll = vector<vvll>; using vvvvll = vector<vvvll>; using vvvvvll = vector<vvvvll>; template <class T> using pq = priority_queue<T>; template <class T> using pqg = priority_queue<T,vector<T>,greater<T>>; #define all(A) A.begin(),A.end() #define sz(A) (ll)A.size() #define pb(a) push_back(a) #define mp(a,b) make_pair(a,b) #define rep(i, n) for (ll i = 0; i < (ll)(n); i++) #define rrep(i,a,b) for(ll i=(ll)(a);i<=(ll)(b);i++) #define drep(i,n) for(ll i=(ll)n-1; i>=0; i--) #define drrep(i,a,b) for(ll i=(ll)a; i>=(ll)b; i--) using mint = modint998244353; // using mint = modint1000000007; using vm = vector<mint>; using vvm = vector<vm>; using vvvm = vector<vvm>; const ll mod = 998244353; // const ll mod = 1000000007; const ll INF = 3e18; template<class T> inline bool chmin(T &a, T b) { if (a>b) { a=b; return true; } return false; } template<class T> inline bool chmax(T &a, T b) { if (a<b) { a=b; return true; } return false; } ll gcd(ll a, ll b) { if (a==0)return b; if (b==0)return a; ll c=a; while(a%b!=0) { c=a%b; a=b; b=c; } return b; } ll lcm(ll a,ll b){ return a/gcd(a,b)*b; } ll Pow(ll a, ll n) { ll res=1; while(n>0) { if(n%2==1)res*=a; a*=a; n/=2; } return res; } ll Pow(ll a, ll n, ll p) { ll res=1; while(n>0) { a%=p; if(n%2==1)res*=a; a*=a; res%=p; n/=2; } return res; } void yn(bl ok) { cout << (ok?"Yes\n":"No\n"); return; } ll N,Q,I[1<<17],S[1<<17],T[1<<17],cnt[1<<17]; const ll TIME=100001; db att[1<<17],ans[1<<17]; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin>>N>>Q; rep(i,Q) { cin>>I[i]>>S[i]>>T[i]; I[i]--,S[i]++,T[i]++; cnt[S[i]]++; cnt[T[i]]--; } rrep(i,1,TIME) { cnt[i]+=cnt[i-1]; if(cnt[i])att[i]=(db)1.0/cnt[i]; else att[i]=0.0; att[i]+=att[i-1]; } rep(i,Q) { ll id=I[i]; ans[id]+=att[T[i]-1]-att[S[i]-1]; } rep(i,N)cout << fixed << setprecision(18) << ans[i] << endl; return 0; }