Codeforces Beta Round #29 (Div. 2, Codeforces format), problem: (C) Mail Stamps 图论
题意:给定一些边,求出其中的一条通路。保证那些边实在同一条线段上的。#include
#include
#include
usingnamespacestd;
mapnode;
constintLMT=100003;
intmp[LMT][3],see[LMT],du[LMT],cnt;
intmain(void)
{
intn,u,v,x,y,s=0,pre=0;
scanf("%d",&n);