結果

問題 No.2462 七人カノン
ユーザー planesplanes
提出日時 2023-09-08 21:40:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 928 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 176,012 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-26 14:34:03
合計ジャッジ時間 10,295 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 183 ms
9,216 KB
testcase_14 AC 229 ms
9,728 KB
testcase_15 AC 213 ms
9,472 KB
testcase_16 AC 220 ms
10,096 KB
testcase_17 AC 220 ms
10,240 KB
testcase_18 AC 198 ms
7,552 KB
testcase_19 AC 171 ms
7,296 KB
testcase_20 AC 228 ms
10,496 KB
testcase_21 AC 204 ms
10,368 KB
testcase_22 AC 223 ms
10,624 KB
testcase_23 AC 232 ms
10,368 KB
testcase_24 AC 203 ms
8,832 KB
testcase_25 AC 232 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

  #include <bits/stdc++.h> 
using namespace std;
using ll =long long;
#define all(v) v.begin(),v.end()
 #define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)

ll INF=2e18;


int main() {
    ios::sync_with_stdio(false);
  cin.tie(0);
  ll N,Q;cin>>N>>Q;

  vector<ll> cnt(100000+10);
  
  vector<vector<pair<ll,ll>>> vec(N,vector<pair<ll,ll>> (0));
  for(ll i=0;i<Q;i++) {
    ll I,S,T;cin>>I>>S>>T;
    I--;
    vec[I].push_back(make_pair(S,T));
    cnt[S]++;
    cnt[T]--;
  }

  for(ll i=1;i<100000+10;i++) {
   cnt[i]+=cnt[i-1];
  }



vector<double> r(100000+10);
for(ll i=0;i<100000+10;i++) {
  if(cnt[i]==0) r[i]=0;
  else r[i]=1.0/cnt[i];
}

for(ll i=1;i<100000+10;i++) r[i]+=r[i-1];

cout<<fixed<<setprecision(10);
for(ll i=0;i<N;i++) {
  double ans=0;
  for(auto x:vec[i]) {
    if(x.first==0) ans+=r[x.second-1];
    else ans+=r[x.second-1]-r[x.first-1];
  }
  cout<<ans<<endl;
}
}


  


0