結果
問題 | No.2221 Set X |
ユーザー | t98slider |
提出日時 | 2023-02-18 15:59:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 813 bytes |
コンパイル時間 | 1,426 ms |
コンパイル使用メモリ | 168,480 KB |
実行使用メモリ | 13,752 KB |
最終ジャッジ日時 | 2024-07-20 01:58:42 |
合計ジャッジ時間 | 11,121 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,752 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 1,830 ms
6,940 KB |
testcase_17 | AC | 287 ms
6,940 KB |
testcase_18 | TLE | - |
testcase_19 | AC | 228 ms
6,940 KB |
testcase_20 | AC | 865 ms
6,944 KB |
testcase_21 | AC | 12 ms
6,940 KB |
testcase_22 | AC | 14 ms
6,944 KB |
testcase_23 | AC | 3 ms
6,940 KB |
testcase_24 | AC | 10 ms
6,940 KB |
testcase_25 | AC | 7 ms
6,940 KB |
testcase_26 | TLE | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n, x = 1, ans, zi = 0; cin >> n; vector<int> a(n), b(n); for(auto &&v:a) cin >> v; ans = 2 * n; auto f = [&](int v){ if(v + 1 > ans) return ans; while(zi < n && a[zi] < v) zi++; if(zi >= 1) b[zi - 1] = 0; int cnt = 1; for(int i = zi; i < n; i++){ b[i] = a[i] / v; if(i && b[i] != b[i - 1]){ cnt++; if(cnt * (v + 1) > ans) return ans; } } return cnt * (v + 1); }; for(int i = 2; i <= 2 * n; i++){ int v = f(i); if(v < ans){ ans = v; x = i; } } cout << x << '\n'; cout << ans << '\n'; }