# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
172192 | HellAngel | Bitaro’s Party (JOI18_bitaro) | C++14 | 1307 ms | 276740 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/// bai tri tue vai loz cac ban a
#include <bits/stdc++.h>
using namespace std;
const int maxn = 2e5 + 7;
const int magic = 320;
int n, m, q, dp[maxn], block[maxn];
vector<int> qr;
vector<int> vt[maxn], vt2[maxn];
vector<pair<int, int>> graph[maxn];
void Merge(int x, int y)
{
int cntx = 0;
int cnty = 0;
vector<pair<int, int>> newvt = {};
while(cntx < graph[x].size() || cnty < graph[y].size())
{
if(newvt.size() == magic) break;
if(cntx == graph[x].size()) newvt.push_back({graph[y][cnty].first + 1, graph[y][cnty].second}), cnty++;
else if(cnty == graph[y].size()) newvt.push_back(graph[x][cntx++]);
else
{
if(graph[y][cnty].first + 1 > graph[x][cntx].first)
{
newvt.push_back({graph[y][cnty].first + 1, graph[y][cnty].second});
cnty++;
}
else newvt.push_back(graph[x][cntx++]);
}
}
graph[x] = newvt;
}
int32_t main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
if(fopen("test.inp", "r")) freopen("test.inp", "r", stdin), freopen("test.out", "w", stdout);
cin >> n >> m >> q;
for(int i = 1; i <= m; i++)
{
int u, v;
cin >> u >> v;
vt[v].push_back(u);
vt2[u].push_back(v);
}
for(int i = 1; i <= n; i++)
{
graph[i].push_back({0, i});
for(auto j: vt[i])
{
Merge(i, j);
}
}
for(int i = 1; i <= q; i++)
{
int u, c;
cin >> u >> c;
for(int j = 1; j <= c; j++)
{
int x;
cin >> x;
block[x] = true;
qr.push_back(x);
}
if(c < magic)
{
bool ok = false;
for(int j = 0; j < graph[u].size(); j++)
{
if(!block[graph[u][j].second])
{
cout << graph[u][j].first << '\n';
ok = true;
break;
}
}
if(!ok) cout << -1 << '\n';
}
else
{
int ans = 0;
dp[u] = 0;
for(int j = u - 1; j >= 1; j--)
{
dp[j] = -1e15;
for(auto x: vt2[j])
{
if(x <= u)
{
dp[j] = max(dp[j], dp[x] + 1);
}
}
if(!block[j])
ans = max(ans, dp[j]);
}
if(ans > 0)
{
cout << ans << '\n';
}
else
{
if(block[u]) cout << -1 << '\n';
else cout << 0 << '\n';
}
}
for(auto i: qr) block[i] = 0;
qr = {};
}
}
컴파일 시 표준 에러 (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... |