답안 #66060

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

using namespace std;
#define ll long long

//14:20
int n;
ll m;
ll c[45];
ll way[2150000];
unordered_map<ll,int> compr;
vector<ll> did;

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;
        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);
            }
        }
        cout << did[did.size()/2];
        return 0;
        sort(did.begin(),did.end());
        int in = 1;
        ll prev = -1;
        for(ll el : did) {
            if(el != prev) {
                way[in]++;
                compr[el] = in++;
                prev = el;
            } else {
                way[in-1]++;
            }
        }
        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 376 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 3 ms 436 KB Output is correct
3 Correct 3 ms 436 KB Output is correct
4 Correct 4 ms 560 KB Output is correct
5 Correct 3 ms 572 KB Output is correct
6 Correct 3 ms 616 KB Output is correct
7 Correct 3 ms 616 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 14 ms 616 KB Output is correct
2 Correct 7 ms 616 KB Output is correct
3 Correct 13 ms 644 KB Output is correct
4 Correct 2 ms 644 KB Output is correct
5 Correct 8 ms 644 KB Output is correct
6 Correct 87 ms 644 KB Output is correct
7 Correct 12 ms 644 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 87 ms 644 KB Output is correct
2 Correct 23 ms 644 KB Output is correct
3 Correct 7 ms 644 KB Output is correct
4 Correct 7 ms 752 KB Output is correct
5 Correct 83 ms 756 KB Output is correct
6 Correct 11 ms 760 KB Output is correct
7 Correct 13 ms 760 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 98 ms 8936 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 101 ms 8956 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 102 ms 8956 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 95 ms 8996 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 100 ms 8996 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 95 ms 8996 KB Output isn't correct
2 Halted 0 ms 0 KB -