# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
963150 | Amr | Tropical Garden (IOI11_garden) | C++17 | 474 ms | 179336 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "garden.h"
#include "gardenlib.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define F first
#define S second
#define sz size()
#define all(x) (x).begin(),(x).end()
const int N = 1000000;
const int Log = 32;
vector<pair<ll,ll> > v[N];
ll lst[N];
vector<ll> vec;
ll vis[N];
pair<ll,ll> sp[N][Log][2];
void dfs1(ll x)
{
if(vis[x]) return;
vis[x] = 1;
vec.push_back(x);
for(int i = 0; i < v[x].sz; i++)
{
dfs1(v[x][i].S);
}
}
void count_routes(int N, int M, int P, int R[][2], int Q, int G[])
{
for(int i = 0; i < M; i++)
{
ll x = R[i][0] , y = R[i][1];
v[x].push_back({i,y});
v[y].push_back({i,x});
}
for(int i = 0; i < N; i++) sort(all(v[i]));
dfs1(P);
if(vec.sz==2)
{
answer(1);
return;
}
for(int i = 0; i < vec.sz; i++)
{
ll x = vec[i];
ll y = v[x][0].S;
ll m = -1;
if(v[y][0].S==x) m = 0; else if(v[y][1].S==x) m = 1;
sp[x][0][0] = {y,m};
if(v[x].sz==1) {sp[x][0][1] = {-1,-1}; continue;}
m = -1;
y = v[x][1].S;
if(v[y][0].S==x) m = 0; else if(v[y][1].S==x) m = 1;
sp[x][0][1] = {y,m};
}
for(int j = 1; j < Log; j++)
{
for(int i = 0; i < vec.sz; i++)
{
ll x = vec[i];
ll y = sp[x][j-1][0].F,m=0;
if(v[y].sz>1&&sp[x][j-1][0].S==0) m = 1;
sp[x][j][0] = sp[y][j-1][m];
if(v[x].sz==1) continue;
y = sp[x][j-1][1].F,m=0;
if(v[y].sz>1&&sp[x][j-1][1].S==0) m = 1;
sp[x][j][1] = sp[y][j-1][m];
}
}
/*for(int i = 0; i < N; i++){
for(int j = 0; j < 3; j++)
{
cout << sp[i][j][0].F << " " << sp[i][j][1].F << endl;
}
cout << endl;
}*/
ll ans = 0;
for(int i = 0; i < vec.sz; i++)
{
ll x = vec[i], y = 0;
ll k = G[0];
for(int j = Log-1; j >= 0; j--)
{
if(k<(1LL<<j)) continue;
k-=(1LL<<j);
ll x2 = sp[x][j][y].F,m = sp[x][j][y].S;
if(m==0&&v[x2].sz>1) m = 1; else m = 0;
x = x2, y = m;
}
//cout << x << " ";
if(x==P) ans++;
}
answer(ans);
}
컴파일 시 표준 에러 (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... |