#include "plants.h"
#include <bits/stdc++.h>
#define pb push_back
#define all(x) x.begin(), x.end()
using namespace std;
typedef long long ll;
typedef vector<int> vi;
const int MAXN = 5e3 + 5;
int N, k, vis[MAXN], memo[MAXN][MAXN], MP[MAXN][MAXN], in[MAXN], pos[MAXN];
vi r, Graph[MAXN];
void sub(int idx)
{
for(int i = 1; i < k; i++)
{
int id = ((idx - i)%N + N)%N;
if(r[id] > 0)
{
r[id]--;
if(r[id] == 0 && !vis[id] && !MP[idx][id])
{
Graph[idx].pb(id);
in[id]++;
MP[idx][id] = 1;
}
}
}
}
int getnext(int idx)
{
for(int i = 1; i < N; i++)
{
int id = ((idx + i)%N + N)%N;
if(i < k && !vis[id] && !MP[idx][id])
{
Graph[idx].pb(id);
MP[idx][id] = 1;
in[id]++;
}
if(r[id] == 0 && !vis[id])
return id;
}
return idx;
}
void dfs(int root, int node)
{
memo[root][node] = 1;
for(auto i : Graph[node])
if(i != node && !memo[root][i])
dfs(root, i);
}
/*
void topo()
{
queue<int> Q;
for(int i = 0; i < N; i++)
if(in[i] == 0)
Q.push(i);
int cnt = 0;
while(!Q.empty())
{
int node = Q.front();
Q.pop();
pos[node] = cnt++;
for(auto i : Graph[node])
{
if(in[i] > 0)
in[i]--;
if(in[i] == 0)
Q.push(i);
}
}
}
*/
void init(int _k, vi _r)
{
k = _k;
swap(r, _r);
N = r.size();
int maxIdx = 0;
for(int i = 0; i < N; i++)
{
if(r[i] != 0)
continue;
int maxim = 1;
for(int j = 1; j < k; j++)
{
int id = ((i - j)%N + N)%N;
if(r[id] == 0)
maxim = 0;
}
if(maxim)
maxIdx = i;
}
while(!vis[maxIdx])
{
vis[maxIdx] = 1;
sub(maxIdx);
maxIdx = getnext(maxIdx);
}
for(int i = 0; i < N; i++)
dfs(i, i);
return;
}
int compare_plants(int x, int y)
{
if(memo[x][y])
return 1;
else if(memo[y][x])
return -1;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
512 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
512 KB |
Output is correct |
4 |
Correct |
1 ms |
512 KB |
Output is correct |
5 |
Correct |
1 ms |
512 KB |
Output is correct |
6 |
Correct |
64 ms |
3368 KB |
Output is correct |
7 |
Runtime error |
76 ms |
5752 KB |
Execution killed with signal 11 |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
512 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
512 KB |
Output is correct |
4 |
Correct |
1 ms |
512 KB |
Output is correct |
5 |
Correct |
2 ms |
1280 KB |
Output is correct |
6 |
Correct |
124 ms |
16504 KB |
Output is correct |
7 |
Execution timed out |
4054 ms |
131784 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
512 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
512 KB |
Output is correct |
4 |
Correct |
1 ms |
512 KB |
Output is correct |
5 |
Correct |
2 ms |
1280 KB |
Output is correct |
6 |
Correct |
124 ms |
16504 KB |
Output is correct |
7 |
Execution timed out |
4054 ms |
131784 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
512 KB |
Output is correct |
2 |
Correct |
1 ms |
640 KB |
Output is correct |
3 |
Incorrect |
140 ms |
31868 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
512 KB |
Output is correct |
2 |
Correct |
0 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
512 KB |
Output is correct |
4 |
Correct |
1 ms |
512 KB |
Output is correct |
5 |
Correct |
1 ms |
640 KB |
Output is correct |
6 |
Incorrect |
3 ms |
1280 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
488 KB |
Output is correct |
2 |
Correct |
0 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
512 KB |
Output is correct |
4 |
Correct |
1 ms |
512 KB |
Output is correct |
5 |
Incorrect |
32 ms |
12912 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
512 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
512 KB |
Output is correct |
4 |
Correct |
1 ms |
512 KB |
Output is correct |
5 |
Correct |
1 ms |
512 KB |
Output is correct |
6 |
Correct |
64 ms |
3368 KB |
Output is correct |
7 |
Runtime error |
76 ms |
5752 KB |
Execution killed with signal 11 |
8 |
Halted |
0 ms |
0 KB |
- |