QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#69374#4585. Greedy KnapsackkarunaTL 16ms4104kbC++171.2kb2022-12-26 23:17:292022-12-26 23:17:30

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-12-26 23:17:30]
  • 评测
  • 测评结果:TL
  • 用时:16ms
  • 内存:4104kb
  • [2022-12-26 23:17:29]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
const int N = 101010;
int n, w[N], v[N]; ll t;

int main() {
    cin.tie(0); ios_base::sync_with_stdio(0);
    cin >> n >> t;
    for (int i = 1; i <= n; i++) cin >> w[i];
    for (int i = 1; i <= n; i++) cin >> v[i];
    ll ans = 0;
    vector<pair<ll, ll>> s[2];
    s[0].push_back({ t, 0 });
    for (int i = 1; i <= n; i++) {
        s[i & 1].clear();
        auto [x, y] = s[~i & 1].back();
        if (x > 2 * N) {
            s[i & 1].push_back({ x - w[i], y + v[i] });
        }
        else {
            for (auto [x, y] : s[~i & 1]) {
                if (x == 0) {
                    ans = max(ans, y);
                }
                else if (w[i] > x) {
                    s[i & 1].push_back({ x, y });
                }
                else {
                    s[i & 1].push_back({ x - w[i], y + v[i] });
                    s[i & 1].push_back({ w[i] - 1, y });
                }
            }
            sort(s[i & 1].begin(), s[i & 1].end());
            s[i & 1].erase(unique(s[i & 1].begin(), s[i & 1].end()), s[i & 1].end());
        }
    }
    for (auto [x, y] : s[n & 1]) {
        ans = max(ans, y);
    }
    cout << ans;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 3276kb

input:

5 10
10 1 2 3 4
1 1 1 1 1

output:

3

result:

ok single line: '3'

Test #2:

score: 0
Accepted
time: 2ms
memory: 3308kb

input:

5 10000000000
10 1 2 3 4
30 2 15 7 11

output:

65

result:

ok single line: '65'

Test #3:

score: 0
Accepted
time: 2ms
memory: 3284kb

input:

5 20
4 9 5 1 3
203 175 131 218 304

output:

900

result:

ok single line: '900'

Test #4:

score: 0
Accepted
time: 2ms
memory: 3236kb

input:

1 1
1
1

output:

1

result:

ok single line: '1'

Test #5:

score: 0
Accepted
time: 16ms
memory: 4104kb

input:

100000 200000
100000 99998 99996 99994 99992 99990 99988 99986 99984 99982 99980 99978 99976 99974 99972 99970 99968 99966 99964 99962 99960 99958 99956 99954 99952 99950 99948 99946 99944 99942 99940 99938 99936 99934 99932 99930 99928 99926 99924 99922 99920 99918 99916 99914 99912 99910 99908 999...

output:

100002

result:

ok single line: '100002'

Test #6:

score: -100
Time Limit Exceeded

input:

92455 883403359
82193 96168 42737 25557 5699 8922 41136 82789 26249 74241 57030 29989 41743 78491 37281 60598 23165 51802 13911 88911 55220 25398 60154 2879 14519 61138 16806 15952 83710 44076 43551 41425 11055 3321 59105 34722 60133 13735 36785 73444 92250 3613 35787 10798 35612 9564 42531 49012 83...

output:


result: