이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define endl '\n'
#define mod 1000000007
#define boost ios_base::sync_with_stdio(false), cin.tie(NULL);
using namespace std;
const int sqt = 150;
vector<int>adj[200001],radj[200001];
int no[200001],dist[200001],sz[200001],dis[200001][71],c[200001][71],x[2000001];
signed main(){
boost;
int n,m,q; cin >> n >> m >> q;
for(int i = 0; i < m; i++){
int a,b; cin >> a >> b;
adj[a].push_back(b);
radj[b].push_back(a);
}
for(int i = 1; i <= n; i++){
vector<pair<int,int>>ds;
ds.push_back({0,i});
for(auto s:radj[i]){
ds.push_back({1,s});
for(int j = 1; j <= sz[s]; j++){
ds.push_back({dis[s][j] + 1, c[s][j]});
}
}
sort(ds.begin(), ds.end(), greater<pair<int,int>>());
for(int j = 0; j < ds.size(); j++){
if(x[ds[j].second]) continue;
dis[i][++sz[i]] = ds[j].first;
c[i][sz[i]] = ds[j].second;
x[ds[j].second] = 1;
if(sz[i] > sqt) break;
}
for(auto s:radj[i]){
x[s] = 0;
for(int j = 1; j <= sz[s]; j++) x[c[s][j]] = 0;
}
}
while(q--){
int t,y, ans = -1; cin >> t >> y;
set<int>f;
if(y > sqt){
for(int i = 1; i <= t; i++) no[i] = 0;
}else{
for(int i = 1; i <= sz[t]; i++) no[c[t][i]] = 0;
no[t] = 0;
}
for(int i = 0; i < y; i++){
int x; cin >> x;
no[x] = 1;
}
if(y > sqt){
for(int i = 1; i <= t; i++){
if(no[i]) dist[i] = -INT_MAX;
else dist[i] = 0;
for(auto x:radj[i]) dist[i] = max(dist[i], dist[x] + 1);
}
ans = max(ans,dist[t]);
}else{
if(!no[t]) ans = 0;
for(int j = 1; j <= sz[t]; j++){
if(!no[c[t][j]]){
ans = dis[t][j];
break;
}
}
}
cout << ans << endl;
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
bitaro.cpp: In function 'int main()':
bitaro.cpp:35:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
35 | for(int j = 0; j < ds.size(); j++){
| ~~^~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |