結果
問題 | No.31 悪のミックスジュース |
ユーザー | tnakao0123 |
提出日時 | 2016-03-03 13:58:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,629 bytes |
コンパイル時間 | 756 ms |
コンパイル使用メモリ | 88,748 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-24 13:44:53 |
合計ジャッジ時間 | 1,551 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
/* -*- coding: utf-8 -*- * * 31.cc: No.31 悪のミックスジュース - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 100; typedef long long ll; /* typedef */ typedef vector<int> vi; typedef queue<int> qi; typedef pair<int,int> pii; struct CSum { int i, k; ll sum; double ave; CSum() {} CSum(int _i, int _k, ll _sum): i(_i), k(_k), sum(_sum) { ave = (double)sum / k; } bool operator<(const CSum &c) const { return ave < c.ave; } void print() { printf("%d,%d,%lld,%lf\n", i, k, sum, ave); } }; /* global variables */ int n, cs[MAX_N]; CSum csums[MAX_N]; /* subroutines */ void rec(int i, int v, ll total) { //printf("rec(%d, %d, %lld)\n", i, v, total); if (v == 0) { printf("%lld\n", total); exit(0); } if (i >= n) return; for (int j = v / csums[i].k; j >= 0; j--) rec(i + 1, v - j * csums[i].k, total + csums[i].sum * j); } /* main */ int main() { ll v; cin >> n >> v; for (int i = 0; i < n; i++) cin >> cs[i]; csums[0] = CSum(0, 1, cs[0]); for (int i = 1; i < n; i++) csums[i] = CSum(i, i + 1, csums[i - 1].sum + cs[i]); ll total = csums[n - 1].sum; sort(csums, csums + n); //for (int i = 0; i < n; i++) csums[i].print(); if (v < n) printf("%lld\n", total); else rec(0, v - n, total); return 0; }