제출 #292206

#제출 시각아이디문제언어결과실행 시간메모리
292206davooddkareshki어르신 집배원 (BOI14_postmen)C++17
55 / 100
544 ms67172 KiB
#include<bits/stdc++.h>
using namespace std;

//#define int long long
#define F first
#define S second
#define pii pair<int,int>
#define mpr make_pair

typedef long long ll;
//typedef long double ld;

const int maxn = 5e5+10;
const int mod = 1e9+7;
const int inf = (1ll<<40)-1;

int n, m, k;
bool mark_E[maxn];
vector<pii> g[maxn];
int ptr[maxn];

int mark[maxn];
vector<int> stk;
vector<int> ans[maxn]; int num = 0;

void DO(int v)
{
    if(mark[v])
    {
        num++;
        while(stk.back() != v)
        {
            int u = stk.back();
            mark[u] = 0;
            ans[num].push_back(u);
            stk.pop_back();
        }
        mark[v] = 0;
        ans[num].push_back(v);
        stk.pop_back();
    }
    mark[v] = 1;
    stk.push_back(v);
}

void dfs(int v)
{
    for(; ptr[v] < g[v].size(); ptr[v]++)
    {
        pii e = g[v][ptr[v]];
        int u = e.F, id = e.S;
        if(!mark_E[id])
        {
            mark_E[id] = 1;
            dfs(u);
            DO(u);
        }
    }
}

signed main()
{
    //ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);

    scanf("%d%d", &n, &m);
    for(int i = 1, u, v; i <= m; i++)
    {
        scanf("%d%d", &u, &v);
        g[u].push_back({v,i});
        g[v].push_back({u,i});
    }

    dfs(1);
    DO(1);

    for(int i = 1; i <= num; i++)
    {
        for(auto v : ans[i]) printf("%d ", v);
        printf("\n");
    }
}
/*
10 15
1 3
5 1
2 3
9 2
3 4
6 3
4 5
7 4
4 8
5 7
8 5
6 7
7 8
8 10
10 9
*/

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

postmen.cpp:15:26: warning: overflow in conversion from 'long long int' to 'int' changes value from '1099511627775' to '-1' [-Woverflow]
   15 | const int inf = (1ll<<40)-1;
      |                 ~~~~~~~~~^~
postmen.cpp: In function 'void dfs(int)':
postmen.cpp:48:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   48 |     for(; ptr[v] < g[v].size(); ptr[v]++)
      |           ~~~~~~~^~~~~~~~~~~~~
postmen.cpp: In function 'int main()':
postmen.cpp:65:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   65 |     scanf("%d%d", &n, &m);
      |     ~~~~~^~~~~~~~~~~~~~~~
postmen.cpp:68:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   68 |         scanf("%d%d", &u, &v);
      |         ~~~~~^~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...