結果
問題 | No.766 金魚すくい |
ユーザー | koyopro |
提出日時 | 2020-02-29 21:21:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,330 bytes |
コンパイル時間 | 1,429 ms |
コンパイル使用メモリ | 161,936 KB |
実行使用メモリ | 16,640 KB |
最終ジャッジ日時 | 2024-10-13 20:19:06 |
合計ジャッジ時間 | 5,503 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
15,104 KB |
testcase_01 | AC | 23 ms
15,104 KB |
testcase_02 | AC | 23 ms
15,104 KB |
testcase_03 | AC | 24 ms
15,104 KB |
testcase_04 | AC | 23 ms
15,104 KB |
testcase_05 | AC | 23 ms
15,104 KB |
testcase_06 | AC | 22 ms
15,104 KB |
testcase_07 | AC | 22 ms
15,104 KB |
testcase_08 | AC | 22 ms
14,976 KB |
testcase_09 | AC | 23 ms
15,104 KB |
testcase_10 | AC | 22 ms
15,104 KB |
testcase_11 | AC | 22 ms
15,104 KB |
testcase_12 | AC | 22 ms
14,976 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 23 ms
15,104 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 70 ms
16,512 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 31 ms
15,104 KB |
testcase_36 | AC | 32 ms
15,104 KB |
testcase_37 | AC | 70 ms
16,640 KB |
testcase_38 | AC | 72 ms
16,512 KB |
testcase_39 | AC | 70 ms
16,640 KB |
testcase_40 | AC | 71 ms
16,512 KB |
testcase_41 | AC | 63 ms
16,512 KB |
testcase_42 | AC | 61 ms
16,384 KB |
testcase_43 | AC | 23 ms
15,104 KB |
testcase_44 | AC | 23 ms
15,104 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define int long long #define FOR(i, a, b) for(int i=(a);i<(b);i++) #define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--) #define REP(i, n) for(int i=0; i<(n); i++) #define RREP(i, n) for(int i=(n-1); i>=0; i--) #define REP1(i, n) for(int i=1; i<=(n); i++) #define RREP1(i, n) for(int i=(n); i>=1; i--) #define ALL(a) (a).begin(),(a).end() #define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end()); #define CONTAIN(a, b) find(ALL(a), (b)) != (a).end() #define out(...) printf(__VA_ARGS__) int dxy[] = {0, 1, 0, -1, 0}; void solve(); signed main() { #if DEBUG std::ifstream in("input.txt"); std::cin.rdbuf(in.rdbuf()); #endif cin.tie(0); ios::sync_with_stdio(false); solve(); return 0; } /*================================*/ #if DEBUG #define SIZE 10 #else #define SIZE 123450 #endif const int MAX = 5e5; const int MOD = 1e9+7; long long fac[MAX], finv[MAX], inv[MAX]; void COMinit() { fac[0] = fac[1] = 1; finv[0] = finv[1] = 1; inv[1] = 1; for (int i = 2; i < MAX; i++){ fac[i] = fac[i - 1] * i % MOD; inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD; finv[i] = finv[i - 1] * inv[i] % MOD; } } long long COM(int n, int k){ if (n < k) return 0; if (n < 0 || k < 0) return 0; if (!fac[n]) COMinit(); return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD; } int mod_pow(int b, int e, int m=MOD) { if (!e) return 1; int result = 1; b %= m; while (e > 0) { if ((e & 1) == 1) result = (result * b) % m; e >>= 1; b = (b * b) % m; } return result; } int N,M,P; int V[SIZE], VS[SIZE]; int E[SIZE]; void solve() { cin>>N>>M>>P; REP(i,N)cin>>V[i]; sort(V, V+N); reverse(V, V+N); VS[0] = V[0]; REP1(i,N-1) { VS[i] = V[i] + VS[i-1]; } COMinit(); int E = 0; REP1(i,N-1) { int p = mod_pow((100-P) * inv[100], i); (p *= mod_pow(P * inv[100], M)) %= MOD; (p *= COM(i+M-1, i)) %= MOD; E += VS[i-1] * p % MOD; E %= MOD; } REP(i,M) { int p = mod_pow((100-P) * inv[100], N); (p *= mod_pow(P * inv[100], i)) %= MOD; (p *= COM(N+i-1, i)) %= MOD; E += VS[N-1] * p % MOD; E %= MOD; } cout << E << endl; }