結果
問題 | No.972 選び方のスコア |
ユーザー | ゆきのん |
提出日時 | 2020-10-19 05:04:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,725 bytes |
コンパイル時間 | 1,771 ms |
コンパイル使用メモリ | 177,320 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-21 07:45:23 |
合計ジャッジ時間 | 5,567 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
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 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:55:23: warning: 'l' may be used uninitialized [-Wmaybe-uninitialized] 55 | 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)); 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; }