結果
問題 | No.1150 シュークリームゲーム(Easy) |
ユーザー | Mister |
提出日時 | 2020-08-07 23:02:14 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 17 ms / 2,000 ms |
コード長 | 930 bytes |
コンパイル時間 | 1,251 ms |
コンパイル使用メモリ | 79,836 KB |
最終ジャッジ日時 | 2025-01-12 17:55:20 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 43 |
ソースコード
#include <iostream> #include <algorithm> #include <vector> using lint = long long; void solve() { int n, s, t; std::cin >> n >> s >> t; --s, --t; auto dist = [&](int i, int j) { int d = std::abs(i - j); return std::min(d, n - d); }; lint ans = 0; std::vector<lint> same; for (int i = 0; i < n; ++i) { lint x; std::cin >> x; int ds = dist(s, i), dt = dist(t, i); if (ds < dt) { ans += x; } else if (ds > dt) { ans -= x; } else { same.push_back(x); } } std::sort(same.rbegin(), same.rend()); { int sign = 1; for (auto x : same) { ans += x * sign; sign = -sign; } } std::cout << ans << "\n"; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }