結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー motumotumotumotu
提出日時 2014-11-17 01:42:01
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 432 ms / 5,000 ms
コード長 1,602 bytes
コンパイル時間 757 ms
コンパイル使用メモリ 89,828 KB
実行使用メモリ 10,372 KB
最終ジャッジ日時 2025-01-01 19:55:44
合計ジャッジ時間 10,111 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 388 ms
9,920 KB
testcase_01 AC 402 ms
9,808 KB
testcase_02 AC 395 ms
9,876 KB
testcase_03 AC 432 ms
9,808 KB
testcase_04 AC 388 ms
10,180 KB
testcase_05 AC 386 ms
9,864 KB
testcase_06 AC 375 ms
10,372 KB
testcase_07 AC 406 ms
9,680 KB
testcase_08 AC 371 ms
9,200 KB
testcase_09 AC 381 ms
9,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cstring>
#include <vector>
#include <climits>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <stack>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <sstream>
#include <functional>
#include <ctime>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
#define FOR(i,a,b) for(int i=(a);i<(b);i++)
#define REP(i,n)  FOR(i,0,n)
#define CLEAR(d) memset((d), 0, (sizeof((d))))
#define ALL(c) (c).begin(), (c).end()
#define ABS(x) ((x < 0) ? -(x) : (x))
#define SORT(x) sort((x).begin(), (x).end())
#define RSORT(x) sort((x).begin(), (x).end(), greater<int>() )
#define SIZE(a) ((int)((a).size()))
#define MAX3(a, b, c) (max(max((a), (b)), (c)))
#define MIN3(a, b, c) (min(min((a), (b)), (c)))
#define MOD 1000000007
#define EPS 1e-5
#define PI  (acos(-1))
#define INF 10000000
//===================================================
typedef pair<double, int> DIP;
typedef pair<double, DIP> DPP;
double ans[500001];
int main()
{
    int n, q, k;
    double l;
    priority_queue<DPP> que;
    cin >> n;
    REP(i, n) {
        cin >> l;
        que.push(DPP(l, DIP(l, 1)));
    }
    REP(i, 500000) {
        ans[i + 1] = que.top().first;
        double b_l = que.top().second.first;
        int d_n = que.top().second.second + 1;
        double n_l = b_l / d_n;
        que.push(DPP(n_l, DIP(b_l, d_n)));
        que.pop();
    }
    cin >> q;
    REP(i, q) {
        cin >> k;
        printf("%.10f\n", ans[k]);
    }
    return 0;
}
0