# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
678563 | uylulu | Dango Maker (JOI18_dango_maker) | C++17 | 102 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;
#define ld long double
// #define int __int16_t
#define endl "\n"
const int N = 3e3;
set<int> adj[N*N + 1];
char grid[N + 1][N + 1];
map<pair<pair<int,int>,pair<int,int>>,int> mp;
vector<vector<int>> dp;
int f(int s,int pa,bool type) {
if(dp[s][type] != -1) return dp[s][type];
int res = type;
for(auto u : adj[s]) {
if(u == pa) continue;
res = (res + f(u,s,!type));
}
return dp[s][type] = res;
}
signed main() {
ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
// freopen("in.txt","r",stdin);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |