結果
問題 | No.1375 Divide and Update |
ユーザー | risujiroh |
提出日時 | 2021-02-05 22:06:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 2,411 bytes |
コンパイル時間 | 2,065 ms |
コンパイル使用メモリ | 205,040 KB |
実行使用メモリ | 12,572 KB |
最終ジャッジ日時 | 2024-07-02 12:33:56 |
合計ジャッジ時間 | 5,032 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 45 ms
11,276 KB |
testcase_11 | AC | 42 ms
10,668 KB |
testcase_12 | AC | 24 ms
7,220 KB |
testcase_13 | AC | 19 ms
6,484 KB |
testcase_14 | AC | 51 ms
12,568 KB |
testcase_15 | AC | 51 ms
12,572 KB |
testcase_16 | AC | 51 ms
12,564 KB |
testcase_17 | AC | 50 ms
12,436 KB |
testcase_18 | AC | 52 ms
12,564 KB |
testcase_19 | AC | 52 ms
12,568 KB |
testcase_20 | AC | 39 ms
12,440 KB |
ソースコード
#include <bits/stdc++.h> #pragma region my_template struct Rep { struct I { int i; void operator++() { ++i; } int operator*() const { return i; } bool operator!=(I o) const { return i < *o; } }; const int l_, r_; Rep(int l, int r) : l_(l), r_(r) {} Rep(int n) : Rep(0, n) {} I begin() const { return {l_}; } I end() const { return {r_}; } }; struct Per { struct I { int i; void operator++() { --i; } int operator*() const { return i; } bool operator!=(I o) const { return i > *o; } }; const int l_, r_; Per(int l, int r) : l_(l), r_(r) {} Per(int n) : Per(0, n) {} I begin() const { return {r_ - 1}; } I end() const { return {l_ - 1}; } }; template <class F> struct Fix : private F { Fix(F f) : F(f) {} template <class... Args> decltype(auto) operator()(Args&&... args) const { return F::operator()(*this, std::forward<Args>(args)...); } }; template <class T = int> T scan() { T res; std::cin >> res; return res; } template <class T, class U = T> bool chmin(T& a, U&& b) { return b < a ? a = std::forward<U>(b), true : false; } template <class T, class U = T> bool chmax(T& a, U&& b) { return a < b ? a = std::forward<U>(b), true : false; } #ifndef LOCAL #define DUMP(...) void(0) template <int OnlineJudge, int Local> constexpr int OjLocal = OnlineJudge; #endif using namespace std; #define ALL(c) begin(c), end(c) #pragma endregion constexpr auto Inf = numeric_limits<int64_t>::max() / 2; int main() { cin.tie(nullptr)->sync_with_stdio(false); cout << fixed << setprecision(20); int n = scan(); auto go = [&](const vector<int64_t>& a, int64_t x) { vector<int64_t> suff(n + 1); for (int i : Per(n)) suff[i] = a[i] + suff[i + 1]; vector<int64_t> aux(n + 1); for (int i : Rep(n + 1)) aux[i] = x * i + suff[i]; vector<int64_t> res(n); res[0] = -Inf; int64_t mn = aux[0]; for (int i : Rep(1, n)) { res[i] = max(res[i - 1], aux[i] - mn); chmin(mn, aux[i]); } return res; }; int64_t x = scan(); int64_t y = scan(); vector<int64_t> a(n); generate(ALL(a), scan<>); auto l = go(a, x); auto r = go({rbegin(a), rend(a)}, y); auto off = accumulate(ALL(a), int64_t(0)); for (int i : Rep(1, n - 1)) cout << off + l[i] + r[n - i - 1] << '\n'; }