제출 #764889

#제출 시각아이디문제언어결과실행 시간메모리
764889vjudge1Network (BOI15_net)C++17
0 / 100
6 ms11988 KiB
// Problem: C - Интернет связь // Contest: Virtual Judge - IOI contest div-B // URL: https://vjudge.net/contest/564767#problem/C // Memory Limit: 256 MB // Time Limit: 2000 ms // // Powered by CP Editor (https://cpeditor.org) #include <bits/stdc++.h> using namespace std; #define ll long long #define pb push_back #define sz(x) (int)x.size() #define all(v) (v).begin(),(v).end() #define rall(v) ((v).rbegin()), ((v).rend()) #define out(v) for(auto& i : v) cout << i << ' '; #define F first #define S second #define int long long const ll N = 5e5 + 17; const ll MOD = 1e9 + 7; const string alf = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; vector <int > g[N]; int cnt = 1; void solve (){ int n; cin >>n; for(int i = 1; i <= n - 1; i ++){ int x , y; cin >> x >> y; g[x].pb(y); g[y].pb(x); } vector <int > ans; ans.pb(1); for(int i = 2; i <= n; i ++){ if (g[i].size() == 1){ ans.pb(i); } } cout <<(ans.size() + 1) / 2 << endl; for(int i = 0; i < ans.size(); i += 2){ if (i + 1 == ans.size()){ cout <<ans[i] << " " << g[ans[i]][0] << endl; } else { cout <<ans[i] << " " << ans[i + 1] << endl; } } } signed main(){ // freopen("ones.in" , "r" , stdin) ; // freopen("ones.out" , "w" , stdout) ; ios::sync_with_stdio(false); cin.tie(0); int T = 1; // int cs = 1; // cin >>T; while (T --){ // cout <<"Case " << cs ++<< ":" << endl; solve (); // cout <<endl; } }

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

net.cpp: In function 'void solve()':
net.cpp:46:19: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   46 |  for(int i = 0; i < ans.size(); i += 2){
      |                 ~~^~~~~~~~~~~~
net.cpp:47:13: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   47 |   if (i + 1 == ans.size()){
      |       ~~~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...