結果
問題 | No.21 平均の差 |
ユーザー | goodbaton |
提出日時 | 2015-07-29 00:27:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2,184 ms / 5,000 ms |
コード長 | 1,149 bytes |
コンパイル時間 | 616 ms |
コンパイル使用メモリ | 73,476 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-17 21:25:11 |
合計ジャッジ時間 | 3,952 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2,184 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 4 ms
6,944 KB |
testcase_08 | AC | 7 ms
6,940 KB |
testcase_09 | AC | 277 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:61:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 61 | scanf("%d%d",&n,&k); | ~~~~~^~~~~~~~~~~~~~ main.cpp:64:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 64 | scanf("%d",&a[i]); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <cstdio> #include <cstdlib> #include <iostream> #include <string> #include <cmath> #include <algorithm> #include <vector> #include <queue> #include <stack> #include <map> #include <set> #include <cstring> typedef long long ll; using namespace std; #define mod 1000003 #define INF 1000000000 #define LLINF 2000000000000000000LL #define SIZE 10000 int n,k,a[10]; int sum[10],cc[10]; double dfs(int h){ double ret = 0; if(h==n){ double minav=INF,maxav=0,av; for(int i=0;i<k;i++){ if(cc[i]==0) return -1; } for(int i=0;i<k;i++){ av = (double)sum[i]/cc[i]; minav = min(av,minav); maxav = max(av,maxav); } return maxav-minav; } for(int i=0;i<k;i++){ sum[i]+=a[h]; cc[i]++; ret = max(ret,dfs(h+1)); sum[i]-=a[h]; cc[i]--; } return ret; } int main(){ scanf("%d%d",&n,&k); for(int i=0;i<n;i++) scanf("%d",&a[i]); printf("%d\n",(int)ceil(dfs(0))); return 0; }