結果

問題 No.1457 ツブ消ししとるなHard
ユーザー masutech16masutech16
提出日時 2021-03-31 22:21:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,531 bytes
コンパイル時間 2,433 ms
コンパイル使用メモリ 203,020 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 08:28:41
合計ジャッジ時間 5,186 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 1 "/workspaces/compro/lib/template.hpp"


#line 1 "/workspaces/compro/lib/io/vector.hpp"
#include <iostream>
#include <vector>

#ifndef IO_VECTOR
#define IO_VECTOR

template <class T> std::ostream &operator<<(std::ostream &out, const std::vector<T> &v) {
  int size = v.size();
  for (int i = 0; i < size; i++) {
    std::cout << v[i];
    if (i != size - 1)
      std::cout << " ";
  }
  return out;
}

template <class T> std::istream &operator>>(std::istream &in, std::vector<T> &v) {
  for (auto &el : v) {
    std::cin >> el;
  }
  return in;
}

#endif
#line 4 "/workspaces/compro/lib/template.hpp"
#include <bits/stdc++.h>
#define REP(i, n) for (int i = 0; i < n; i++)
#define FOR(i, m, n) for (int i = m; i < n; i++)
#define ALL(v) (v).begin(), (v).end()
#define coutd(n) cout << fixed << setprecision(n)
#define ll long long int
#define vl vector<ll>
#define vi vector<int>
#define MM << " " <<

using namespace std;

template <class T> void chmin(T &a, T b) {
  if (a > b)
    a = b;
}

template <class T> void chmax(T &a, T b) {
  if (a < b)
    a = b;
}

// 重複を消す。計算量はO(NlogN)
template <class T> void unique(std::vector<T> &v) {
  std::sort(v.begin(), v.end());
  v.erase(std::unique(v.begin(), v.end()), v.end());
}


#line 2 "main.cpp"

void solve(int N, int M, int X, int Y, int Z, const std::vector<int> &A) {
  vector<int> B;
  int t = 0;
  int cnt = 0;
  REP(i, N) {
    if (A[i] <= Y)
      continue;
    if (A[i] >= X) {
      cnt++;
      t += A[i] - Z;
    } else {
      B.push_back(A[i] - Z);
    }
  }

  if (cnt > M) {
    cout << "Handicapped" << endl;
    return;
  }

  vector<int> s1(10000, 0), s2(10000, 0);
  int h = B.size() / 2;
  int n1 = h;
  int n2 = (int)B.size() - h;
  REP(i, 1 << n1) {
    int tmp = 0;
    REP(j, n1) {
      if ((i >> j) % 2 == 1) {
        tmp += B[j];
      }
    }
    s1[tmp + 5000]++;
  }

  int ans = 0;

  REP(i, 1 << n2) {
    int tmp = 0;
    REP(j, n2) {
      if ((i >> j) % 2 == 1) {
        tmp += B[h + j];
      }
    }
    ans += s1[-tmp - t + 5000];
  }

  if (cnt == 0)
    ans--; // 無を選んだ場合を取り除く
  cout << ans << endl;
  return;
}

// generated by online-judge-template-generator v4.7.1 (https://github.com/online-judge-tools/template-generator)
int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);

  int N;
  int M, X, Y, Z;
  std::cin >> N;
  std::vector<int> A(N);
  std::cin >> M >> X >> Y >> Z;
  for (int i = 0; i < N; ++i) {
    std::cin >> A[i];
  }
  solve(N, M, X, Y, Z, A);
  return 0;
}
0