結果
問題 | No.972 選び方のスコア |
ユーザー | ゆきのん |
提出日時 | 2020-10-19 05:05:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,738 bytes |
コンパイル時間 | 1,692 ms |
コンパイル使用メモリ | 176,872 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-21 07:46:09 |
合計ジャッジ時間 | 5,229 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 99 ms
5,248 KB |
testcase_01 | AC | 99 ms
5,376 KB |
testcase_02 | AC | 94 ms
5,376 KB |
testcase_03 | AC | 47 ms
5,376 KB |
testcase_04 | AC | 92 ms
5,376 KB |
testcase_05 | AC | 93 ms
5,376 KB |
testcase_06 | AC | 91 ms
5,376 KB |
testcase_07 | AC | 75 ms
5,376 KB |
testcase_08 | AC | 81 ms
5,376 KB |
testcase_09 | AC | 77 ms
5,376 KB |
testcase_10 | AC | 82 ms
5,376 KB |
testcase_11 | AC | 87 ms
5,376 KB |
testcase_12 | AC | 88 ms
5,376 KB |
testcase_13 | AC | 89 ms
5,376 KB |
testcase_14 | AC | 89 ms
5,376 KB |
testcase_15 | AC | 88 ms
5,376 KB |
testcase_16 | AC | 89 ms
5,376 KB |
testcase_17 | AC | 90 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:56:23: warning: 'l' may be used uninitialized [-Wmaybe-uninitialized] 56 | ll m = (l + r) / 2; | ~~~^~~~ main.cpp:33:8: note: 'l' was declared here 33 | ll l, r; | ^
ソースコード
#include<bits/stdc++.h> //#include<atcoder/all> using namespace std; //using namespace atcoder; #define fs first #define sc second #define pb push_back #define mp make_pair #define eb emplace_back #define ALL(A) A.begin(),A.end() #define RALL(A) A.rbegin(),A.rend() typedef long long ll; typedef pair<ll,ll> P; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<typename T> T gcd(T a,T b){return b?gcd(b,a%b):a;} const ll mod=1000000007; const ll LINF=1ll<<60; const int INF=1<<30; int dx[]={1,0,-1,0,1,-1,1,-1}; int dy[]={0,1,0,-1,1,-1,-1,1}; int main(){ int n;cin >> n; vector<ll> a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } sort(ALL(a)); ll ans = 0; ll sum = 0; ll l, r; for (int i = 0; i < n; i++) { if(i % 2){ sum += a[n - i/2 - 1]; r = a[n - i/2 - 1]; ll m = (l + r) / 2; ll sc = sum - (i + 1) * m; chmax(ans, sc); } else{ sum += a[i/2]; l = a[i/2]; ll m = l; ll sc = sum - (i + 1) * m; chmax(ans, sc); } } sort(RALL(a)); sum = 0; for (int i = 0; i < n; i++) { if(i % 2){ sum += a[n - i/2 - 1]; r = a[n - i/2 - 1]; ll m = (l + r) / 2; ll sc = sum - (i + 1) * m; chmax(ans, sc); } else{ sum += a[i/2]; l = a[i/2]; ll m = l; ll sc = sum - (i + 1) * m; chmax(ans, sc); } } cout << ans << endl; return 0; }