답안 #66053

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
66053 2018-08-09T13:11:17 Z bazsi700 Ice Hockey World Championship (CEOI15_bobek) C++14
40 / 100
1000 ms 65752 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 = 20;
        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;
        ll 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 3 ms 248 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 356 KB Output is correct
2 Correct 3 ms 560 KB Output is correct
3 Correct 2 ms 560 KB Output is correct
4 Correct 2 ms 560 KB Output is correct
5 Correct 3 ms 672 KB Output is correct
6 Correct 3 ms 672 KB Output is correct
7 Correct 2 ms 672 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 11 ms 672 KB Output is correct
2 Correct 6 ms 672 KB Output is correct
3 Correct 11 ms 672 KB Output is correct
4 Correct 3 ms 672 KB Output is correct
5 Correct 6 ms 672 KB Output is correct
6 Correct 81 ms 748 KB Output is correct
7 Correct 12 ms 748 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 82 ms 748 KB Output is correct
2 Correct 20 ms 748 KB Output is correct
3 Correct 6 ms 748 KB Output is correct
4 Correct 6 ms 748 KB Output is correct
5 Correct 78 ms 748 KB Output is correct
6 Correct 12 ms 748 KB Output is correct
7 Correct 11 ms 748 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 179 ms 9688 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 209 ms 10416 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 280 ms 24732 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1082 ms 65608 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1092 ms 65752 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1086 ms 65752 KB Time limit exceeded
2 Halted 0 ms 0 KB -