답안 #66051

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
66051 2018-08-09T13:09:31 Z bazsi700 Ice Hockey World Championship (CEOI15_bobek) C++14
40 / 100
1000 ms 74576 KB
#include <bits/stdc++.h>

using namespace std;
#define ll long long

//14:20
int n;
ll m;
ll c[45];
ll way[2150000];

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cin >> n >> m;
    for(int i = 0; i < n; i++) {
        cin >> c[i];
    }
    if(n <= 22) {
        ll ways = 0;
        for(int mask = 0; mask < (1<<n); mask++) {
            ll money = m;
            for(int i = 0; i < n; i++) {
                if(mask&(1<<i)) {
                    money-= c[i];
                }
            }
            if(money >= 0) {
                ways++;
            }
        }
        cout << ways;
    } else {
        ll ways = 0;
        vector<ll> did;
        unordered_map<ll,int> compr;
        int b1 = 21;
        for(int mask = 0; mask < (1<<b1); mask++) {
            ll money = m;
            for(int i = 0; i < b1; i++) {
                if(mask&(1<<i)) {
                    money-= c[i];
                }
            }
            if(money >= 0) {
                did.push_back(m-money);
            }
        }
        sort(did.begin(),did.end());
        int in = 1;
        int prev = -1;
        for(ll el : did) {
            way[in]++;
            if(el != prev) {
                compr[el] = in++;
                prev = el;
            }
        }
        for(int i = 1; i <= in; i++) {
            way[i]+=way[i-1];
        }
        for(int mask = 0; mask < (1<<(n-b1)); mask++) {
            ll money = m;
            for(int i = b1; i < n; i++) {
                if(mask&(1<<(i-b1))) {
                    money-= c[i];
                }
            }
            if(money >= 0) {
                auto it = upper_bound(did.begin(),did.end(),money);
                if(it != did.begin()) {
                    it--;
                    ways+= way[compr[*it]];
                }
            }
        }
        cout << ways;
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 340 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 360 KB Output is correct
2 Correct 2 ms 436 KB Output is correct
3 Correct 2 ms 568 KB Output is correct
4 Correct 2 ms 568 KB Output is correct
5 Correct 2 ms 568 KB Output is correct
6 Correct 2 ms 568 KB Output is correct
7 Correct 2 ms 568 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 11 ms 572 KB Output is correct
2 Correct 6 ms 620 KB Output is correct
3 Correct 11 ms 620 KB Output is correct
4 Correct 2 ms 620 KB Output is correct
5 Correct 7 ms 620 KB Output is correct
6 Correct 80 ms 752 KB Output is correct
7 Correct 13 ms 752 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 80 ms 752 KB Output is correct
2 Correct 22 ms 752 KB Output is correct
3 Correct 7 ms 752 KB Output is correct
4 Correct 8 ms 752 KB Output is correct
5 Correct 79 ms 764 KB Output is correct
6 Correct 12 ms 764 KB Output is correct
7 Correct 12 ms 764 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 374 ms 17868 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 386 ms 18684 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 480 ms 34972 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1072 ms 74576 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1080 ms 74576 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1088 ms 74576 KB Time limit exceeded
2 Halted 0 ms 0 KB -