結果
問題 | No.31 悪のミックスジュース |
ユーザー | koyopro |
提出日時 | 2015-09-29 14:32:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,714 bytes |
コンパイル時間 | 596 ms |
コンパイル使用メモリ | 79,416 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-19 17:28:52 |
合計ジャッジ時間 | 1,234 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include <iostream> #include <sstream> #include <math.h> #include <vector> #include <array> #include <algorithm> #include <queue> #include <numeric> #include <map> #include <set> #include <bitset> using namespace std; #define int long long #define FOR(i, a, b) for(int i=(a);i<(b);i++) #define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--) #define REP(i, n) for(int i=0; i<(n); i++) #define RREP(i, n) for(int i=(n-1); i>=0; i--) #define ALL(a) (a).begin(),(a).end() #define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end()); #define CONTAIN(a, b) find(ALL(a), (b)) != (a).end() #define SUM(a) accumulate(ALL(a), 0) #define array2(type, x, y) array<array<type, y>, x> #define vector2(type) vector<vector<type> > #define out(...) printf(__VA_ARGS__) /*================================*/ int N,V; int C[111]; double AVE[111]; signed main() { cin >> N >> V; int cost = 0; REP(i,N) { cin >> C[i]; // 最低1リットルずつは買う cost += C[i]; V -= 1; AVE[i] = 1.0 * cost / (i+1); } while (V >= N) { int v = min(V, N); int mini = 0; REP(i,v) { if (AVE[i] <= AVE[mini]) { mini = i; } } int a = V / (mini + 1); int sumc = 0; REP(i,mini+1) sumc += C[i]; cost += a * sumc; V %= (mini + 1); } // VはN未満 if (V > 0) { int minadd = 1e15; REP(i,V/2+1) { int j = V - i; int add = 0; REP(k,i) add += C[k]; REP(k,j) add += C[k]; minadd = min(minadd, add); } cost += minadd; } cout << cost << endl; return 0; }