# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
747715 | Sami_Massah | Dango Maker (JOI18_dango_maker) | C++17 | 671 ms | 19468 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;
const long long maxn = 3000 + 12 ;
long long n, m, ans, dp[maxn][4][4];
string s[maxn];
vector <int> nums;
bool val(int a, int b){
if(a < 0 || a >= n)
return 0;
if(b < 0 || b >= m)
return 0;
return 1;
}
int get_max(){
// for(int i: nums)
// cout << i << ' ';
//cout << endl;
for(int i = 0; i <= nums.size(); i++)
for(int j = 0; j < 4; j++)
for(int c = 0; c < 4; c++)
dp[i][j][c] = 0;
for(int i = 3; i < nums.size(); i++){
for(int j = 0; j < 4; j++)
for(int c = 0; c < 4; c++){
if(j & 1)
dp[i][c][j] = max(dp[i][c][j], dp[i - 2][nums[i - 2] & 1][nums[i - 3] & 1] + 1 + (c > 0));
if(j & 2)
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... |