# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
601275 | yutabi | 식물 비교 (IOI20_plants) | C++14 | 4091 ms | 4980 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "plants.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
int n;
vector <int> ans;
vector <vector <int> > graph;
bool table[300][300];
int K;
void init(int k, std::vector<int> r)
{
K=k;
n=r.size();
ans=vector <int> (n);
if(n<=300)
{
graph.resize(n);
for(int i=0;i<n;i++)
{
int loc;
int last=-1;
for(int j=n-k;j<n;j++)
{
if(r[j]==0)
{
last=j;
}
}
for(int j=0;j<n;j++)
{
if(r[j]==0)
{
if(last==-1 || (last<j && last+k<=j) || (last>j && j+n-k>=last) || j==last)
{
loc=j;
break;
}
last=j;
}
}
r[loc]=n*4;
for(int j=(loc-k+1+n)%n;j!=loc;j=(j+1)%n)
{
r[j]--;
if(r[j]<=n)
{
graph[j].pb(loc);
}
}
for(int j=(loc+k-1)%n;j!=loc;j=(j-1+n)%n)
{
if(r[j]<=n)
{
graph[j].pb(loc);
}
}
/*for(int j=0;j<n;j++)
{
printf("%d ",r[j]);
}
printf("\n");*/
}
/*for(int i=0;i<n;i++)
{
printf("%d: ",i);
for(int j=0;j<graph[i].size();j++)
{
printf("%d ",graph[i][j]);
}
printf("\n");
}*/
for(int j=0;j<n;j++)
{
vector <bool> v(n,0);
stack <int> st;
st.push(j);
while(st.size())
{
int node=st.top();
st.pop();
v[node]=1;
for(int k=0;k<graph[node].size();k++)
{
if(v[graph[node][k]]==0)
{
st.push(graph[node][k]);
v[graph[node][k]]=1;
}
}
}
for(int k=0;k<n;k++)
{
if(v[k])
{
table[j][k]=1;
}
}
}
}
else if(k!=2)
{
for(int i=0;i<n;i++)
{
int loc;
int last=-1;
for(int j=n-k;j<n;j++)
{
if(r[j]==0)
{
last=j;
}
}
for(int j=0;j<n;j++)
{
if(r[j]==0)
{
if(last==-1 || (last<j && last+k<=j) || (last>j && j+n-k>=last) || j==last)
{
loc=j;
break;
}
last=j;
}
}
r[loc]=n*4;
ans[loc]=i;
for(int j=(loc-k+1+n)%n;j!=loc;j=(j+1)%n)
{
r[j]--;
}
/*for(int j=0;j<n;j++)
{
printf("%d ",r[j]);
}
printf("\n");*/
}
}
else
{
}
return;
}
int compare_plants(int x, int y)
{
if(n<=300)
{
if(table[x][y])
{
return -1;
}
if(table[y][x])
{
return 1;
}
return 0;
}
if(K!=2)
{
if(ans[x]<ans[y])
{
return 1;
}
return -1;
}
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |