結果
問題 | No.370 道路の掃除 |
ユーザー | yuho0819 |
提出日時 | 2016-09-04 10:52:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 992 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 24,288 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-04-27 16:27:16 |
合計ジャッジ時間 | 4,486 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | WA | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:5:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d %d",&a,&s); | ~~~~~^~~~~~~~~~~~~~~ main.cpp:13:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | scanf("%d",&d); | ~~~~~^~~~~~~~~ main.cpp:35:28: warning: ‘z’ may be used uninitialized in this function [-Wmaybe-uninitialized] 35 | for(j=i+1;j<z;j++){ | ~^~
ソースコード
#include<stdio.h> int main(void) { int a,s,d,lo[10000],hi[10000],h,i,j,k,z,x,c,g,f; scanf("%d %d",&a,&s); h=0; j=0; for(i=0;i<10000;i++){ lo[i]=-1; hi[i]=-1; } for(i=0;i<s;i++){ scanf("%d",&d); if(d<0){ lo[h]=d; h++; } if(d>0){ hi[z]=d; z++; } if(d==0) a--; } for(i=0;i<h;i++){ for(j=i+1;j<h;j++){ if(lo[i]<lo[j]){ k=lo[i]; lo[i]=lo[j]; lo[j]=k; } } } for(i=0;i<z;i++){ for(j=i+1;j<z;j++){ if(hi[i]>hi[j]){ k=hi[i]; hi[i]=hi[j]; hi[j]=k; } } } /*for(i=0;i<h;i++) printf("low %d=%d\n",i,lo[i]); for(i=0;i<z;i++) printf("high %d=%d\n",i,hi[i]);*/ g=2100000000; x=a; f=0; for(i=0;i<=a;i++){ k=0; c=0; for(j=0;j<x;j++){ k+=lo[j]*-1; } for(j=0;j<f;j++){ c+=hi[j]; } //printf("x==%d f==%d\n",x,f); x--; f++; //printf("k*2=%d c*2=%d c=%d k=%d\n",k*2+c,c*2+k,c,k); if(k>=0&&c>=0){ if(g>k*2+c) g=k*2+c; if(g>c*2+k) g=c*2+k; } } printf("%d\n",g); return 0; }