# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
901574 | duckindog | Magneti (COCI21_magneti) | C++14 | 4 ms | 756 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// from duckindog wth depression
#include<bits/stdc++.h>
using namespace std;
const int N = 50 + 10,
L = 1e4 + 10,
M = 1e9 + 7;
int n, l;
int r[N];
void sub1() {
vector<long long> d(l + 1), f(l + 1);
const int x = r[1];
for (int i = 1; i <= l; ++i) d[i] = (d[i - 1] + n) % M;
for (int i = 2; i <= n; ++i) {
fill(f.begin(), f.end(), 0);
for (int j = i * x; j <= l; ++j) f[j] = (d[j - x] * (n - i + 1)) % M;
for (int j = 1; j <= l; ++j) d[j] = (d[j - 1] + f[j]) % M;
}
cout << d[l];
}
int32_t main() {
cin.tie(0)->sync_with_stdio(0);
if (fopen("duck.inp", "r")) {
freopen("duck.inp", "r", stdin);
freopen("duck.out", "w", stdout);
}
cin >> n >> l;
for(int i = 1; i <= n; ++i) cin >> r[i];
sort(r + 1, r + n + 1);
int sub = r[1] == r[n] ? 1 : n <= 10 ? 2 : (n <= 30 && l <= 300) ? 3 : 4;
if (sub == 1) {
sub1();
return 0;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |