#include <bits/stdc++.h>
#define Alora "cownav"
#define fi(i,a,b) for(int i = a; i <= b; i++)
#define fid(i,a,b) for(int i = a; i >= b; i--)
#define ll long long
#define f first
#define se second
#define pii pair<int, int>
#define getbit(i, j) ((i >> j) & 1)
#define all(v) v.begin(), v.end()
#define pb push_back
#define maxn 10003
const int M = 1e9 + 7;
using namespace std;
int n, l, r[55];
ll res, C[55][maxn], gt[55];
void add(ll &x, ll y){x = (x + y) % M;}
void pre(){
fi(i, 1, l) C[0][i] = 1;
C[1][1] = 1;
fi(i, 2, l){
fi(j, 1, min(50, i)){
add(C[j][i], C[j][i - 1] + C[j - 1][i - 1]);
}
}
gt[0] = 1;
fi(i, 1, n) gt[i] = 1ll*gt[i - 1]*i % M;
}
void sub1(){
if(n == 1) {cout << l; exit(0);}
fid(i, l - 1, 1){
int len = i - (n - 1)*r[i];
if(len < 0) break;
len += n - 1;
add(res, C[n - 1][len]*gt[n] % M);
}
cout << res;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(NULL);
if(fopen(Alora".inp", "r")){
freopen(Alora".inp", "r", stdin);
freopen(Alora".out", "w", stdout);}
cin >> n >> l;
fi(i, 1, n) cin >> r[i];
pre();
sort(r + 1, r + n + 1);
if(r[1] == r[n]) sub1();
return 0;
}
Compilation message
Main.cpp: In function 'int main()':
Main.cpp:46:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
46 | freopen(Alora".inp", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:47:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
47 | freopen(Alora".out", "w", stdout);}
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
5 ms |
8696 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
4444 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
604 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
5 ms |
8696 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |