「日常训练」The Necklace(UVA-10054)

Posted samhx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了「日常训练」The Necklace(UVA-10054)相关的知识,希望对你有一定的参考价值。

代码

            for(int i=0; i!=n; ++i)
            {
                int u = cin.nextInt();
                int v = cin.nextInt();
                edges.add(new Edge(u,v));
                startpnt = u;
                if(g.get(u)==null) g.put(u, new ArrayList<Integer> ());
                g.get(u).add(edges.size()-1);
                edges.add(new Edge(v,u));
                if(g.get(v)==null) g.put(v, new ArrayList<Integer> ());
                g.get(v).add(edges.size()-1);
            }
            boolean ok = true;
            for(int i=1;i<=n;++i)
            {
                if(g.get(i)==null) continue;
                if(g.get(i).size()%2==1)
                {
                    ok=false;
                    break;
                }
            }
            if(ok) euler(startpnt);
            System.out.println("Case #"+kase);
            if(ok && stack.size()==n)
            {
                while(!stack.isEmpty())
                {
                    System.out.println(stack.peek().u+" "+stack.peek().v);
                    stack.pop();
                }
            }
            else
            {
                System.out.println("some beads may be lost");
            }
            System.out.println();
        }
    }
}

以上是关于「日常训练」The Necklace(UVA-10054)的主要内容,如果未能解决你的问题,请参考以下文章

UVA 10054 - The Necklace(欧拉回路)

UVA 10054 (欧拉回路) The Necklace

欧拉回路UVA - 10054 The Necklace

UVA-10054.The Necklace(欧拉回路)解题报告

The Necklace UVA - 10054 (无向图的欧拉回路)

Necklace - CF613C