結果
問題 | No.838 Noelちゃんと星々3 |
ユーザー | imoni_kawaii |
提出日時 | 2020-06-16 22:51:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,002 bytes |
コンパイル時間 | 3,386 ms |
コンパイル使用メモリ | 206,452 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-03 12:00:51 |
合計ジャッジ時間 | 3,653 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 1 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 1 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> #ifdef _DEBUG #include "debug.hpp" #else #define debug(...) #endif #define REP(i, m, n) for(int i = (int)(m); i < (int)(n); ++i) #define rep(i, n) REP(i, 0, n) using namespace std; using ll = long long; using ld = long double; using pll = pair<ll, ll>; const int INF = 1<<30; const ll LINF = 1LL<<60; const ld PI = 3.1415926535897932; template<class T, class U> inline bool chmax(T &a, const U &b) { if(a < b) { a = b; return true; } return false; } template<class T, class U> inline bool chmin(T &a, const U &b) { if(a > b) { a = b; return true; } return false; } signed main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vector<ll> y(n); rep(i, n) cin >> y[i]; sort(y.begin(), y.end()); vector<ll> x = y; x[0] = x[1]; REP(i, 1, n-1) { if(x[i+1]-x[i] <= x[i]-x[i-1]) x[i] = x[i+1]; else x[i] = x[i-1]; } if(x[n-1] != x[n-2]) x[n-1] = x[n-2]; ll ans = 0; rep(i, n) ans += abs(x[i]-y[i]); cout << ans << '\n'; return 0; }