結果
問題 | No.972 選び方のスコア |
ユーザー | 沙耶花 |
提出日時 | 2019-12-10 20:37:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,124 bytes |
コンパイル時間 | 2,175 ms |
コンパイル使用メモリ | 207,712 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-12-17 20:33:38 |
合計ジャッジ時間 | 72,159 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1,903 ms
6,820 KB |
testcase_03 | AC | 1,903 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 1,902 ms
6,816 KB |
testcase_11 | AC | 1,902 ms
6,816 KB |
testcase_12 | AC | 1,902 ms
6,816 KB |
testcase_13 | AC | 1,901 ms
6,820 KB |
testcase_14 | AC | 1,902 ms
6,816 KB |
testcase_15 | WA | - |
testcase_16 | AC | 1,902 ms
6,820 KB |
testcase_17 | AC | 1,902 ms
6,820 KB |
testcase_18 | AC | 1,902 ms
6,816 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 1,902 ms
6,816 KB |
testcase_22 | AC | 1,903 ms
6,820 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 1,902 ms
6,820 KB |
testcase_26 | AC | 1,902 ms
6,816 KB |
testcase_27 | AC | 1,902 ms
6,816 KB |
testcase_28 | AC | 1,902 ms
6,820 KB |
testcase_29 | AC | 1,903 ms
6,820 KB |
testcase_30 | AC | 1,902 ms
6,820 KB |
testcase_31 | AC | 1,902 ms
6,820 KB |
testcase_32 | AC | 1,902 ms
6,816 KB |
testcase_33 | AC | 1,901 ms
6,820 KB |
testcase_34 | AC | 1,902 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define modulo 1000000007 #define mod(mod_x) ((((long long)mod_x+modulo))%modulo) #define Inf 10000000000000000 unsigned long xor128() { static unsigned long x=123456789, y=362436069, z=521288629, w=88675123; unsigned long t=(x^(x<<11)); x=y; y=z; z=w; return (w=(w^(w>>19))^(t^(t>>8))); } int main(){ double time; chrono::system_clock::time_point start_time; start_time = chrono::system_clock::now(); double LIMIT = 1900.0; 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 = 0; while(true){ chrono::system_clock::time_point now_time = chrono::system_clock::now(); double time = static_cast<double>(chrono::duration_cast<chrono::microseconds>(now_time - start_time).count()/1000.0); if(time>=LIMIT)break; int m = xor128()%N; long long score = 0; for(int i=0;i<N;i++){ int x = m-1-i; int y = N-1-i; if(y==m||x<0)break; long long b = a[x] + a[y] - 2*a[m]; if(b<=0)break; score += b; ans = max(ans,score); } } cout<<ans<<endl; return 0; }