結果
問題 | No.837 Noelちゃんと星々2 |
ユーザー | eQe |
提出日時 | 2019-06-14 22:45:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 949 bytes |
コンパイル時間 | 1,275 ms |
コンパイル使用メモリ | 160,548 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-14 07:48:00 |
合計ジャッジ時間 | 3,013 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 52 ms
6,820 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 53 ms
6,820 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 52 ms
6,820 KB |
testcase_09 | AC | 3 ms
6,820 KB |
testcase_10 | AC | 3 ms
6,820 KB |
testcase_11 | AC | 3 ms
6,820 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 3 ms
6,816 KB |
testcase_21 | WA | - |
testcase_22 | AC | 3 ms
6,816 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 3 ms
6,816 KB |
testcase_26 | WA | - |
testcase_27 | AC | 3 ms
6,816 KB |
testcase_28 | AC | 3 ms
6,820 KB |
testcase_29 | WA | - |
testcase_30 | AC | 3 ms
6,820 KB |
testcase_31 | WA | - |
testcase_32 | AC | 3 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> #define ft first #define sc second #define lb lower_bound #define ub upper_bound #define pb push_back #define pt(sth) cout << sth << "\n" #define chmax(a, b) {if(a<b) a=b;} #define chmin(a, b) {if(a>b) a=b;} #define moC(a, s, b) (a)=((a)s(b)+MOD)%MOD using namespace std; typedef long long ll; typedef pair<ll, ll> P; static const ll INF=1e18; static const ll MAX=1e5+7; static const ll MOD=1e9+7; ll max(ll a, ll b) {return a>b?a:b;} ll min(ll a, ll b) {return a<b?a:b;} int main(void) { ll N; cin >> N; ll x[MAX]; ll i; ll s[MAX]={}; x[0]=-INF; for(i=1; i<=N; i++) cin >> x[i]; sort(x+1, x+N+1); x[N+1]=INF; for(i=1; i<=N; i++) s[i]=s[i-1]+x[i]; ll ans=INF; for(i=1; i<=N; i++) { ll l=i/2; ll r=(N+i)/2+1; ll ls=s[i]-s[l]-x[l]*(i-l)+x[l]*(l-1)-s[l-1]; ll rs=s[N]-s[r]-x[r]*(N-r)+x[r]*(r-i-1)-(s[r-1]-s[i]); chmin(ans, ls+rs); } pt(ans); }