제출 #227989

#제출 시각아이디문제언어결과실행 시간메모리
227989quocnguyen1012Network (BOI15_net)C++14
0 / 100
5 ms384 KiB
#include <bits/stdc++.h> #define fi first #define se second #define mp make_pair #define pb push_back #define eb emplace_back #define ar array using namespace std; typedef long long ll; typedef pair<int, int> ii; const int maxn = 5e5 + 5; int deg[maxn], N; vector<int> leaf; signed main(void) { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); #ifdef LOCAL freopen("A.INP", "r", stdin); freopen("A.OUT", "w", stdout); #endif // LOCAL cin >> N; for(int i = 1; i < N; ++i){ int u, v; cin >> u >> v; deg[u]++; deg[v]++; } for(int i = 1; i <= N; ++i){ if(deg[i] == 1) leaf.eb(i); } cout << (leaf.size() + 1) / 2 << '\n'; for(int i = 0; i < leaf.size(); i += 2){ if(i == leaf.size() - 1){ if(leaf[i] == 1) cout << N << ' ' << leaf[i] << '\n'; else cout << 1 << ' ' << leaf[i] << '\n'; } else cout << leaf[i] << ' ' << leaf[i + 1] << '\n'; } }

컴파일 시 표준 에러 (stderr) 메시지

net.cpp: In function 'int main()':
net.cpp:35:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int i = 0; i < leaf.size(); i += 2){
                  ~~^~~~~~~~~~~~~
net.cpp:36:10: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     if(i == leaf.size() - 1){
        ~~^~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...