제출 #1119681

#제출 시각아이디문제언어결과실행 시간메모리
1119681vjudge1어르신 집배원 (BOI14_postmen)C++17
55 / 100
581 ms64952 KiB
#include <bits/stdc++.h> #define fi first #define se second using namespace std; const int maxn = 1e6 + 5; int n, m; vector<vector<pair<int, int>>> g; vector<int> path; vector<bool> seen; bool vs[maxn]; void dfs(int node) { while (!g[node].empty()) { int son = g[node].back().fi, idx = g[node].back().se; // auto [son, idx] = g[node].back(); g[node].pop_back(); if (seen[idx]) { continue; } seen[idx] = true; dfs(son); } path.push_back(node); } int main() { ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); // freopen("main.inp", "r", stdin); cin >> n >> m; g.resize(n+1); seen.resize(m); for (int i = 0; i < m; i++) { int x, y; cin >> x >> y; g[x].push_back({y, i}); g[y].push_back({x, i}); } dfs(1); // for (int x : path) cout << x << " "; // cout << endl; stack<int> st; for (int i = 0; i < path.size(); i++) { if (vs[path[i]]) { while(!st.empty() && st.top() != path[i]) { cout << st.top() << " "; vs[st.top()] = 0; st.pop(); } cout << st.top() << " "; st.pop(); cout << endl; } st.push(path[i]); vs[path[i]] = 1; } }

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

postmen.cpp: In function 'int main()':
postmen.cpp:41:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   41 |     for (int i = 0; i < path.size(); i++) {
      |                     ~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...