結果

問題 No.118 門松列(2)
ユーザー h_nosonh_noson
提出日時 2016-02-17 11:58:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 264 ms / 5,000 ms
コード長 970 bytes
コンパイル時間 707 ms
コンパイル使用メモリ 79,172 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-04-17 13:52:39
合計ジャッジ時間 4,459 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,812 KB
testcase_01 AC 264 ms
29,184 KB
testcase_02 AC 249 ms
28,160 KB
testcase_03 AC 256 ms
28,800 KB
testcase_04 AC 263 ms
29,184 KB
testcase_05 AC 261 ms
29,056 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 242 ms
27,392 KB
testcase_10 AC 41 ms
8,448 KB
testcase_11 AC 56 ms
10,240 KB
testcase_12 AC 27 ms
7,040 KB
testcase_13 AC 14 ms
6,940 KB
testcase_14 AC 235 ms
26,880 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 123 ms
16,768 KB
testcase_17 AC 13 ms
6,940 KB
testcase_18 AC 57 ms
10,112 KB
testcase_19 AC 104 ms
14,848 KB
testcase_20 AC 111 ms
15,488 KB
testcase_21 AC 191 ms
23,040 KB
testcase_22 AC 43 ms
8,704 KB
testcase_23 AC 170 ms
20,864 KB
testcase_24 AC 65 ms
11,136 KB
testcase_25 AC 96 ms
14,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
using namespace std;

#define RREP(i,s,e) for (int i = e-1; i >= s; i--)
#define rrep(i,n) RREP(i,0,n)
#define REP(i,s,e) for (int i = s; i < e; i++)
#define rep(i,n) REP(i,0,n)

map<pair<int,int>,int> comb;

long long combination(int n, int k) {
    int ret;
    pair<int,int> p {n,k};
    if (comb.count(p))
        return comb[p];
    if (n < k)
        return 0;
    else if (n == k || k == 0)
        return 1;
    else {
        comb[p] = (combination(n-1,k) + combination(n-1,k-1)) % 1000000007;
        return comb[p];
    }
}

int main() {
    int n;
    cin >> n;
    map<int,int> a;
    rep(i,n) {
        int x;
        cin >> x;
        a[x]++;
    }
    
    long long ans = combination(n,3);
    for (auto p : a)
        ans = (ans - (combination(p.second,2)*(n-p.second) + combination(p.second,3)) % 1000000007 + 1000000007) % 1000000007;

    cout << ans << endl;
    return 0;
}
0