結果

問題 No.2221 Set X
ユーザー kuronikuroni
提出日時 2023-02-17 22:29:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,574 ms / 2,000 ms
コード長 922 bytes
コンパイル時間 1,756 ms
コンパイル使用メモリ 169,744 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 13:39:10
合計ジャッジ時間 16,936 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 102 ms
5,376 KB
testcase_17 AC 28 ms
5,376 KB
testcase_18 AC 126 ms
5,376 KB
testcase_19 AC 24 ms
5,376 KB
testcase_20 AC 60 ms
5,376 KB
testcase_21 AC 528 ms
5,376 KB
testcase_22 AC 837 ms
5,376 KB
testcase_23 AC 15 ms
5,376 KB
testcase_24 AC 468 ms
5,376 KB
testcase_25 AC 248 ms
5,376 KB
testcase_26 AC 402 ms
5,376 KB
testcase_27 AC 403 ms
5,376 KB
testcase_28 AC 402 ms
5,376 KB
testcase_29 AC 607 ms
5,376 KB
testcase_30 AC 395 ms
5,376 KB
testcase_31 AC 405 ms
5,376 KB
testcase_32 AC 1,574 ms
5,376 KB
testcase_33 AC 1,544 ms
5,376 KB
testcase_34 AC 1,506 ms
5,376 KB
testcase_35 AC 1,486 ms
5,376 KB
testcase_36 AC 526 ms
5,376 KB
testcase_37 AC 482 ms
5,376 KB
testcase_38 AC 538 ms
5,376 KB
testcase_39 AC 361 ms
5,376 KB
testcase_40 AC 356 ms
5,376 KB
testcase_41 AC 396 ms
5,376 KB
testcase_42 AC 377 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    int n; cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    int d = sqrt(2 * n) + 2;
    pair<int, int> ans = {2 * n, 1};
    for (int i = 2; i <= d; i++) {
        int cnt = 1;
        for (int j = 1; j < n; j++) {
            if (a[j] / i > a[j - 1] / i) {
                cnt++;
            }
        }
        ans = min(ans, {cnt * (i + 1), i});
    }
    vector<int> pt(2 * d);
    for (int i = d + 1; i < 2 * n; i++) {
        for (int j = 1; j < 2 * d; j++) {
            while (pt[j] < n && a[pt[j]] / i <= a[pt[j - 1]] / i) {
                pt[j]++;
            }
            if (pt[j] == n) {
                ans = min(ans, {j * (i + 1), i});
                break;
            }
        }
    }
    cout << ans.second << '\n' << ans.first;
}
0