結果
問題 | No.31 悪のミックスジュース |
ユーザー | tashikani |
提出日時 | 2015-07-20 02:20:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,040 bytes |
コンパイル時間 | 1,209 ms |
コンパイル使用メモリ | 98,368 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-08 10:31:27 |
合計ジャッジ時間 | 2,028 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include <vector> #include <list> #include <map> #include <set> #include <deque> #include <stack> #include <queue> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <cctype> #include <string> #include <cstring> #include <ctime> using namespace std; inline int toInt(string s) {int v; istringstream sin(s);sin>>v;return v;} template<class T> inline string toString(T x) {ostringstream sout;sout<<x;return sout.str();} typedef vector<int> VI; typedef vector<VI> VVI; typedef vector<string> VS; typedef pair<int, int> PII; typedef long long LL; typedef unsigned long long ULL; #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define REP(i,n) FOR(i,0,n) #define MP make_pair #define SZ(a) int((a).size()) #define EACH(i,c) for(auto i: c) #define SORT(c) sort((c).begin(),(c).end()) #define ALL(a) (a).begin(),(a).end() #define RALL(a) (a).rbegin(), (a).rend() const double EPS = 1e-10; const double PI = acos(-1.0); #define dump(x) cerr << #x << " = " << (x) << endl; #define debug(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl; bool cmp(pair<LL, LL> left, pair<LL, LL> right){ return (left.second * right.first) > (left.first * right.second); } int main() { cin.tie(0); ios::sync_with_stdio(false); LL N, V; cin >> N >> V; LL C[N + 1]; vector<pair<LL, LL> > t(N + 1); t[0] = make_pair(0, 0); FOR(i, 1, N + 1){ cin >> C[i]; t[i] = make_pair(t[i - 1].first + 1, t[i - 1].second + C[i]); } LL L = N, cost = t[N].second; stable_sort(ALL(t), cmp); //REP(i, N + 1) cout << t[i].first << " " << t[i].second << endl; //cout << endl; while(L < V){ pair<LL, LL> tmp; for(auto i: t){ if(L + i.first <= V){ tmp = i; } } LL pacs = (V - L) / tmp.first; L += tmp.first * pacs; cost += tmp.second * pacs; //cout << tmp.first << " " << tmp.second << endl; } cout << cost << endl; return 0; }