結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー Akidai16Akidai16
提出日時 2024-10-26 16:29:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 524 ms / 5,000 ms
コード長 1,268 bytes
コンパイル時間 4,192 ms
コンパイル使用メモリ 238,228 KB
実行使用メモリ 17,240 KB
最終ジャッジ日時 2024-10-26 16:30:04
合計ジャッジ時間 20,218 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 508 ms
17,240 KB
testcase_01 AC 524 ms
16,460 KB
testcase_02 AC 519 ms
16,668 KB
testcase_03 AC 480 ms
16,484 KB
testcase_04 AC 486 ms
16,360 KB
testcase_05 AC 476 ms
16,484 KB
testcase_06 AC 489 ms
16,460 KB
testcase_07 AC 481 ms
16,320 KB
testcase_08 AC 453 ms
16,576 KB
testcase_09 AC 478 ms
16,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void solve()':
main.cpp:32:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   32 |         auto [l, idx] = que.top(); que.pop();
      |              ^

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
constexpr ll mod = 1e9 + 7;
constexpr ll INF = 1LL << 60;

#define REP(i, init, n) for(int i = (int)(init); i < (int)(n); i++)
#define RREP(i, init, n) for(int i = (int)(init); i >= (int)(n); i--)
#define All(A) A.begin(), A.end()
#define rAll(A) A.rbegin(), A.rend()

#define vi vector<int>
#define vl vector<long>
#define vvi vector<vector<int>>
#define vvl vector<vector<long>>
#define pint pair<int, int>
#define plong pair<long, long>

int N, Q;
vl L, K;

void solve() {
    priority_queue<pair<long double, int>> que;
    vi div(N, 1);
    REP(i, 0, N) {
        que.push({(long double)L[i], i});
    }
    vector<long double> ans(500001);
    REP(i, 1, 500001) {
        auto [l, idx] = que.top(); que.pop();
        ans[i] = l;
        div[idx]++;
        que.push({(long double)L[idx] / div[idx], idx});
    }
    REP(i, 0, Q) {
        cout << fixed << setprecision(20) << ans[K[i]] << endl;
    }
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    cin >> N;
    L.resize(N);
    REP(i, 0, N) {
        cin >> L[i];
    }
    cin >> Q;
    K.resize(Q);
    REP(i, 0, Q) {
        cin >> K[i];
    }
    solve();
}
0