# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
598558 | definitelynotmee | 열쇠 (IOI21_keys) | C++17 | 3075 ms | 30728 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
#define all(x) x.begin(), x.end()
using ll = long long;
using pii = pair<int,int>;
using pll = pair<ll,ll>;
template<typename t>
using matrix = vector<vector<t>>;
std::vector<int> find_reachable(std::vector<int> r, std::vector<int> u, std::vector<int> v, std::vector<int> c) {
vector<int> ans(r.size(), 1);
int n = r.size();
matrix<pii> g(n);
for(int i = 0; i < u.size(); i++){
g[u[i]].push_back({v[i],c[i]});
g[v[i]].push_back({u[i],c[i]});
}
for(int root = 0; root < n; root++){
vector<int> check(n), got(n);
matrix<int> whenget(n);
vector<int> st = {root};
while(!st.empty()){
int cur = st.back();
st.pop_back();
if(check[cur])
continue;
check[cur] = 1;
got[r[cur]] = 1;
while(!whenget[r[cur]].empty()){
st.push_back(whenget[r[cur]].back());
whenget[r[cur]].pop_back();
}
for(pii i : g[cur]){
if(got[i.ss])
st.push_back(i.ff);
else whenget[i.ss].push_back(i.ff);
}
}
ans[root] = accumulate(all(check),0);
}
int mini = *min_element(all(ans));
for(int i = 0; i < n; i++)
ans[i] = ans[i] == mini;
return 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |