結果

問題 No.412 花火大会
ユーザー cormorancormoran
提出日時 2016-09-29 23:14:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,785 bytes
コンパイル時間 1,846 ms
コンパイル使用メモリ 180,948 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-01 07:51:58
合計ジャッジ時間 5,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 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 AC 2 ms
5,376 KB
testcase_05 AC 17 ms
5,376 KB
testcase_06 TLE -
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 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
#define rep(i, j) for(int i=0; i < (int)(j); i++)
#define repeat(i, j, k) for(int i = (j); i < (int)(k); i++)
#define all(v) v.begin(),v.end()

// vector
template<class T> istream& operator >> (istream &is , vector<T> &v) { for(T &a : v) is >> a; return is; }

class Solver {
  public:

    vector<vector<ll>> C;
    ll Combination(int n, int k){
        ll ret;
        if(C[n][k] >= 0) ret = C[n][k]; 
        if(k == 0 || k==n) ret = C[n][k] = 1;
        else ret =  C[n][k] = Combination(n-1, k-1) + Combination(n-1, k);
        cerr << n << " " << k << " " << ret << endl;
        return ret;
    }
    
    bool solve() {
        C.resize(101, vector<ll>(101, -1));
        vector<int> A(3); cin >> A;
        sort(all(A));
        reverse(all(A)); // dec
        int N; cin >> N;
        vector<int> E(N); cin >> E;

        if(N < 3) {
            cout << 0 << endl;
            return 0;
        }
        
        vector<int> a(4);
        for(int e : E) {
            rep(i, 3) if(A[i] <= e) a[i]++;
        }
        a[3] = N - a[2];
        a[2] -= a[1];
        a[1] -= a[0];
        
        ll ans = 0;
        rep(a0, a[0] + 1) {
            rep(a1, a[1] + 1) {
                rep(a2, a[2] + 1) {
                    rep(a3, a[3] + 1) {
                        if(a0 >= 1 and a0 + a1 >= 2 and a0 + a1 + a2 >= 3) {
                            ans += Combination(a[0], a0) * Combination(a[1], a1) * Combination(a[2], a2) * Combination(a[3], a3);
                        }
                    }
                }
            }
        }
        cout << ans << endl;
        return 0;
    }
};

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    Solver s;
    s.solve();
    return 0;
}
0