結果
問題 | No.837 Noelちゃんと星々2 |
ユーザー | ohreitetsu |
提出日時 | 2019-06-15 12:38:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 750 bytes |
コンパイル時間 | 825 ms |
コンパイル使用メモリ | 69,692 KB |
実行使用メモリ | 17,744 KB |
最終ジャッジ日時 | 2024-11-17 22:21:58 |
合計ジャッジ時間 | 32,418 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
6,816 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1 ms
6,820 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | AC | 2 ms
6,820 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,820 KB |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | AC | 1 ms
6,816 KB |
testcase_31 | AC | 1 ms
6,816 KB |
testcase_32 | AC | 2 ms
17,736 KB |
ソースコード
#include <iostream> #include <vector> using namespace std; typedef long long LL; int main(int argc, char* argv[]) { int N,i,j; cin>>N; vector<LL> Y(N); LL Sum=0; bool bSame=true; for (i=0;i<N;i++){ cin>>Y[i]; Sum+=Y[i]; if (Y[i]!=Y[0]){ bSame=false; } } if (bSame){ cout<<1<<endl; return 0; } LL MinV=Sum; for (i=0;i<N;i++){ for (j=0;j<N;j++){ if (i==j){ continue; } LL ijSum=0; for (int k=0;k<N;k++){ if (k==i || k==j){ continue; } LL ii=Y[i]-Y[k]; if (ii<0){ ii=-ii; } LL jj=Y[j]-Y[k]; if (jj<0){ jj=-jj; } if (ii<jj){ ijSum+=ii; }else{ ijSum+=jj; } } if (MinV>ijSum){ MinV=ijSum; } } } cout<<MinV<<endl; return 0; }