답안 #1085758

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1085758 2024-09-08T16:08:38 Z juicy Ice Hockey World Championship (CEOI15_bobek) C++17
10 / 100
268 ms 20764 KB
#include <bits/stdc++.h>

using namespace std;

#ifdef LOCAL
#include "debug.h"
#else
#define debug(...) 42
#endif

int main() {
  ios::sync_with_stdio(false); cin.tie(nullptr);

  int n; long long k; cin >> n >> k;
  vector<long long> a(n);
  for (int i = 0; i < n; ++i) {
    cin >> a[i];
  }
  vector<long long> lt, rt;
  for (int m = 0; m < (1 << n / 2); ++m) {
    long long sum = 0;
    for (int i = 0; i < n / 2; ++i) {
      if (m >> i & 1) {
        sum += a[i];
      }
    }
    lt.push_back(sum);
  }
  for (int m = 0; m < (1 << n - n / 2); ++m) {
    long long sum = 0;
    for (int i = 0; i < n - n / 2; ++i) {
      if (m >> i & 1) {
        sum += a[n / 2 + i];
      }
    }
    rt.push_back(sum);
  }
  sort(lt.rbegin(), lt.rend());
  sort(rt.begin(), rt.end());
  int j = 0;
  __int128_t res = 0;
  for (int x : lt) {
    while (j < rt.size() && rt[j] + x <= k) {
      ++j;
    }
    res += j;
  }
  while (res) {
    int x = res % 10;
    cout << x;
    res /= 10;
  }
  return 0;
}

Compilation message

bobek.cpp: In function 'int main()':
bobek.cpp:29:31: warning: suggest parentheses around '-' inside '<<' [-Wparentheses]
   29 |   for (int m = 0; m < (1 << n - n / 2); ++m) {
      |                             ~~^~~~~~~
bobek.cpp:43:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   43 |     while (j < rt.size() && rt[j] + x <= k) {
      |            ~~^~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 23 ms 2020 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 31 ms 3028 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 48 ms 3672 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 196 ms 12740 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 24 ms 2140 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 268 ms 20764 KB Output isn't correct
2 Halted 0 ms 0 KB -