結果
問題 | No.972 選び方のスコア |
ユーザー | 沙耶花 |
提出日時 | 2020-01-14 13:49:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 781 bytes |
コンパイル時間 | 2,367 ms |
コンパイル使用メモリ | 205,804 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 01:20:00 |
合計ジャッジ時間 | 8,617 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 185 ms
5,248 KB |
testcase_01 | AC | 184 ms
5,376 KB |
testcase_02 | AC | 174 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 244 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 131 ms
5,376 KB |
testcase_08 | AC | 167 ms
5,376 KB |
testcase_09 | AC | 160 ms
5,376 KB |
testcase_10 | AC | 103 ms
5,376 KB |
testcase_11 | AC | 109 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 112 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | AC | 120 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 172 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 170 ms
5,376 KB |
testcase_22 | AC | 233 ms
5,376 KB |
testcase_23 | AC | 172 ms
5,376 KB |
testcase_24 | AC | 169 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 3 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 | 3 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:37:13: warning: 'ind' may be used uninitialized [-Wmaybe-uninitialized] 37 | int ind; | ^~~
ソースコード
#include <bits/stdc++.h> using namespace std; #define modulo 1000000007 #define mod(mod_x) ((((long long)mod_x+modulo))%modulo) #define Inf 10000000.0 long long get_score(vector<long long> &a,int m){ if(m>=a.size()||m<0)return 0; long long ret = 0; long long S = 0; for(int i=m-1;i>=0;i--){ S += a[i]; S += a[a.size()-1 - (m-1-i)]; S -= 2*a[m]; ret = max(ret,S); } return ret; } int main(){ int N; cin>>N; vector<long long> a(N); for(int i=0;i<N;i++){ cin>>a[i]; } sort(a.begin(),a.end()); long long ans = -1; int ind; for(int i=0;i<N;i+=1000){ long long s = get_score(a,i); if(s>ans){ ans = s; ind = i; } } for(int i=ind-500;i<=ind+500;i++){ ans = max(ans,get_score(a,i)); } cout<<ans<<endl; return 0; }