# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
883182 | MilosMilutinovic | Sparklers (JOI17_sparklers) | C++14 | 209 ms | 262144 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n, k, t;
cin >> n >> k >> t;
--k;
vector<int> x(n);
for (int i = 0; i < n; i++) {
cin >> x[i];
}
auto Check = [&](long long s) {
vector<vector<bool>> dp(n, vector<bool>(n));
vector<vector<bool>> was(n, vector<bool>(n));
function<bool(int, int)> Solve = [&](int L, int R) {
if (was[L][R]) {
return dp[L][R];
}
was[L][R] = true;
if (L == R) {
if (L == k) {
dp[L][R] = true;
} else {
dp[L][R] = false;
}
return dp[L][R];
}
Compilation message (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... |