結果
問題 | No.837 Noelちゃんと星々2 |
ユーザー | tomarint2 |
提出日時 | 2019-06-14 21:55:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,396 bytes |
コンパイル時間 | 933 ms |
コンパイル使用メモリ | 84,384 KB |
実行使用メモリ | 18,504 KB |
最終ジャッジ日時 | 2024-11-14 04:30:18 |
合計ジャッジ時間 | 32,107 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | AC | 2 ms
6,820 KB |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,816 KB |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | AC | 2 ms
6,816 KB |
testcase_31 | AC | 2 ms
6,816 KB |
testcase_32 | AC | 2 ms
18,372 KB |
ソースコード
#include <iostream> #include <cstring> #include <vector> #include <set> #include <list> #include <map> #include <deque> #include <algorithm> #include <utility> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef vector<ll> vll; typedef vector<vector<ll>> vvll; #define for1(i,n) for (ll i=0;i<(n);i++) #define for2(i,m,n) for (ll i=(m);i<(n);i++) #define for3(i,m,n,d) for (ll i=(m);i<(n);i+=(d)) #define DEBUG 0 template <class T> void dumplist(T list) { for (auto item : list) { cout << item << " "; } cout << endl; } void solve() { ll N; cin >> N; vector<ll> Y(N); for1(i,N) cin >> Y[i]; sort(Y.begin(),Y.end()); if (Y[0] == Y[N-1]) { cout << 1 << endl; return; } vector<ll> csum(N+1,0); for1(i,N) csum[i+1] = csum[i] + Y[i]; const ll inf = 1LL << 60; ll ans = inf; // [0,i) [i,N) for2(i,1,N) { ll cost = 0; // 左側を合わせるコスト ll pivot = Y[i/2]; for2(j,0,i) { cost += abs(Y[j] - pivot); } // 右側を合わせるコスト pivot = Y[(N-i)/2+i]; for2(j,i,N) { cost += abs(Y[j] - pivot); } //cerr << i << " " << cost << endl; ans = min(ans, cost); } cout << ans << endl; } int main() { do { solve(); } while (DEBUG); }