| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 394711 | MHNaderi | Network (BOI15_net) | C++14 | 1 ms | 204 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
#define ordered_set tree<int, null_type,less<int>, rb_tree_tag,tree_order_statistics_node_update>
#define int long long
#define pb push_back
#define pii pair<int,int>
#define F first
#define S second
const int maxn=5e5+7;
int n,d[maxn];
void preprocess(){
cin>>n;
for(int i=1;i<n;i++){
int u,v;
cin>>u>>v;
d[u]++;
d[v]++;
}
}
vector<int> ans;
void process(){
for(int i=1;i<=n;i++)
if(d[i] % 2)
ans.pb(i);
}
void afterprocess(){
cout<<ans.size()/2<<'\n';
for(int i=0;i<ans.size();i+=2)
cout<<ans[i]<<' '<<ans[i+1]<<'\n';
}
int32_t main(){
ios_base::sync_with_stdio(0);
preprocess();process();afterprocess();
return 0;
}
컴파일 시 표준 에러 (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... | ||||
