# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
408699 | kwongweng | Bitaro’s Party (JOI18_bitaro) | C++17 | 3 ms | 540 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> ii;
typedef vector<ii> vii;
typedef long double ld;
typedef pair<ll, ll> pll;
#define FOR(i, a, b) for(int i = a; i < b; i++)
#define ROF(i, a, b) for(int i = a; i >= b; i--)
#define ms memset
#define pb push_back
#define F first
#define S second
ll MOD = 1000000007;
ll INF = 1000000000;
ll power(ll base, ll n){
if (n == 0) return 1;
if (n == 1) return base;
ll halfn = power(base, n/2);
if (n % 2 == 0) return (halfn * halfn) % MOD;
return (((halfn * halfn) % MOD) * base) % MOD;
}
ll inverse(ll n){
return power(n, MOD-2);
}
ll add(ll a, ll b){
return (a+b) % MOD;
}
ll mul(ll a, ll b){
return (a*b) % MOD;
}
ll gcd(ll a, ll b){
if (a == 0) return b;
if (a == 1) return 1;
return gcd(b%a, a);
}
int B = 100;
int main(){
ios::sync_with_stdio(false);
int n, m, q; cin >> n >> m >> q;
vi g[n];
vii largest[n];
FOR(i, 0, m){
int s, e; cin >> s >> e;
g[e-1].pb(s-1);
}
FOR(i, 0, n){
int sz = g[i].size();
vi cnt(sz);
int num = 0;
FOR(j, 0, sz){
if (largest[g[i][j]].size() > cnt[j]){
num++;
}
}
set<int> st;
while (num > 0 && largest[i].size() <= 100){
int u = largest[g[i][0]][cnt[0]].S;
int maxi = largest[g[i][0]][cnt[0]].F;
int index = 0;
FOR(j, 1, sz){
int v = g[i][j];
if (largest[v][cnt[j]].F > maxi){
u = largest[v][cnt[j]].S;
maxi = largest[v][cnt[j]].F;
index = j;
}
}
if (st.find(u) == st.end()){
st.insert(u);
largest[i].pb({maxi+1, u});
}
cnt[index]++;
if (cnt[index] == largest[g[i][index]].size()) num--;
}
if (largest[i].size() <= 100){
largest[i].pb({0, i});
}
}
while (q--){
int t, y; cin >> t >> y;
t--;
if (y > 100){
//do bfs
vi dp(t+1);
FOR(i, 0, y){
int c; cin >> c; c--;
if (c > t) continue;
dp[c] = -1;
}
FOR(i, 0, t+1){
FOR(j, 0, g[i].size()){
int u = g[i][j];
if (dp[u] == -1) continue;
dp[i] = max(dp[i], dp[u]+1);
}
}
cout << dp[t] << '\n';
}else{
set<int> st;
FOR(i, 0, y){
int c; cin >> c;
c--;
st.insert(c);
}
bool sol = true;
FOR(i, 0, largest[t].size()){
if (st.find(largest[t][i].S) == st.end()){
cout << largest[t][i].F << '\n';
sol = false; break;
}
}
if (sol) cout << -1 << '\n';
}
}
}
컴파일 시 표준 에러 (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... |