Submission #240482

#TimeUsernameProblemLanguageResultExecution timeMemory
240482karmaSenior Postmen (BOI14_postmen)C++17
55 / 100
520 ms51448 KiB
#include <bits/stdc++.h>

#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx,avx2,fma")

#define pb          emplace_back
#define ll          long long
#define fi          first
#define se          second
#define mp          make_pair
//#define int         int64_t

using namespace std;

const int N = int(5e5) + 10;
typedef pair<int, int> pii;

struct TEdge {
    int u, v;
    bool del;
} e[N];
int n, m, vis[N], ss[N], st[N], cnts, cntt;
int path[N], cp, u, id;
vector<int> adj[N];

int32_t main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0), cout.tie(0);
    #define Task        "test"
    if(fopen(Task".inp", "r")) {
        freopen(Task".inp", "r", stdin);
        freopen(Task".out", "w", stdout);
    }
    cin >> n >> m;
    for(int i = 1; i <= m; ++i) {
        cin >> e[i].u >> e[i].v;
        adj[e[i].u].pb(i);
        adj[e[i].v].pb(i);
    }
    path[++cp] = 1;
    do {
        u = path[cp];
        while(adj[u].size() && e[adj[u].back()].del) adj[u].pop_back();
        if(adj[u].size()) {
            id = adj[u].back();
            adj[u].pop_back();
            e[id].del = 1;
            path[++cp] = e[id].u ^ e[id].v ^ u;
        } else {
            st[++cntt] = u;
            --cp;
        }
    } while(cp > 0);
    while(cntt) {
        if(vis[st[cntt]]) {
            while(1) {
                vis[ss[cnts]] = 0;
                cout << ss[cnts] << ' ';
                if(ss[cnts --] == st[cntt]) break;
            }
            cout << '\n';
        }
        vis[st[cntt]] = 1;
        ss[++cnts] = st[cntt];
        --cntt;
    }
}

Compilation message (stderr)

postmen.cpp: In function 'int32_t main()':
postmen.cpp:31:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
         freopen(Task".inp", "r", stdin);
         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
postmen.cpp:32:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
         freopen(Task".out", "w", stdout);
         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...