結果
問題 | No.626 Randomized 01 Knapsack |
ユーザー | ats5515 |
提出日時 | 2017-12-16 20:47:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,166 bytes |
コンパイル時間 | 914 ms |
コンパイル使用メモリ | 92,152 KB |
実行使用メモリ | 17,912 KB |
最終ジャッジ日時 | 2024-12-15 22:15:09 |
合計ジャッジ時間 | 49,327 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
10,928 KB |
testcase_02 | AC | 18 ms
13,636 KB |
testcase_03 | AC | 8 ms
10,980 KB |
testcase_04 | AC | 130 ms
13,640 KB |
testcase_05 | AC | 2 ms
10,976 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | AC | 3 ms
17,800 KB |
ソースコード
#include <iostream> #include <vector> #include <map> #include <set> #include <queue> #include <string> #include <iomanip> #include <algorithm> #include <cmath> #include <stdio.h> using namespace std; #define int long long int MOD = 1000000007; struct T { int v; int w; bool operator<(const T& right) const { return v * right.w > right.v * w; } }; struct State { int v; int w; //vector<int> goods; bool operator<(const State& right) const { return v * right.w < right.v * w; } }; signed main() { cin.tie(0); ios::sync_with_stdio(false); int N, W; cin >> N >> W; vector<T> A(N); for (int i = 0; i < N; i++) { cin >> A[i].v >> A[i].w; } sort(A.begin(), A.end()); int w = 0; int v = 0; priority_queue<State> pq; priority_queue<State> npq; State st; st.v = 0; st.w = 0; pq.push(st); int res = -1; for (int i = 0; i < N; i++) { while ((int)npq.size() > 0)npq.pop(); for (int j = 0; j < 10000; j++) { if (pq.size() == 0) break; st = pq.top(); pq.pop(); npq.push(st); st.v += A[i].v; st.w += A[i].w; if (st.w <= W) { res = max(res, st.v); npq.push(st); } } swap(pq, npq); } cout << res << endl; }