結果
問題 | No.68 よくある棒を切る問題 (2) |
ユーザー | fumofumofuni |
提出日時 | 2021-09-10 15:24:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 486 ms / 5,000 ms |
コード長 | 1,416 bytes |
コンパイル時間 | 1,931 ms |
コンパイル使用メモリ | 208,728 KB |
実行使用メモリ | 17,676 KB |
最終ジャッジ日時 | 2024-06-11 05:09:13 |
合計ジャッジ時間 | 13,796 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 450 ms
17,672 KB |
testcase_01 | AC | 473 ms
17,596 KB |
testcase_02 | AC | 460 ms
17,668 KB |
testcase_03 | AC | 477 ms
17,676 KB |
testcase_04 | AC | 459 ms
17,676 KB |
testcase_05 | AC | 451 ms
17,676 KB |
testcase_06 | AC | 437 ms
16,412 KB |
testcase_07 | AC | 486 ms
17,044 KB |
testcase_08 | AC | 421 ms
15,960 KB |
testcase_09 | AC | 419 ms
16,764 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(ll i=0;i<n;i++) #define repl(i,l,r) for(ll i=(l);i<(r);i++) #define per(i,n) for(ll i=(n)-1;i>=0;i--) #define perl(i,r,l) for(ll i=r-1;i>=l;i--) #define fi first #define se second #define pb push_back #define ins insert #define pqueue(x) priority_queue<x,vector<x>,greater<x>> #define all(x) (x).begin(),(x).end() #define CST(x) cout<<fixed<<setprecision(x) #define rev(x) reverse(x); using ll=long long; using vl=vector<ll>; using vvl=vector<vector<ll>>; using pl=pair<ll,ll>; using vpl=vector<pl>; using vvpl=vector<vpl>; const ll MOD=1000000007; const ll MOD9=998244353; const int inf=2e9+1; const ll INF=4e18; const ll dy[8]={-1,0,1,0,1,1,-1,-1}; const ll dx[8]={0,-1,0,1,1,-1,1,-1}; template <typename T> inline bool chmax(T &a, T b) { return ((a < b) ? (a = b, true) : (false)); } template <typename T> inline bool chmin(T &a, T b) { return ((a > b) ? (a = b, true) : (false)); } int main(){ ll n;cin >> n; using ld=long double; vector<ld> v(n);rep(i,n)cin >> v[i]; vector<ld> cut(n,1); priority_queue<pair<ld,ll>> que; rep(i,n)que.push({v[i],i}); vector<ld> ans(500010); for(int i=1;i<=500000;i++){ ans[i]=que.top().first; ll idx=que.top().second; que.pop(); cut[idx]++; que.push({v[idx]/cut[idx],idx}); } CST(10); ll q;cin >> q; while(q--){ ll k;cin >> k;cout << ans[k] << endl; } }