CF160D.Edges in MST

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given a connected weighted undirected graph without any loops and multiple edges.

Let us remind you that a graph's spanning tree is defined as an acyclic connected subgraph of the given graph that includes all of the graph's vertexes. The weight of a tree is defined as the sum of weights of the edges that the given tree contains. The minimum spanning tree (MST) of a graph is defined as the graph's spanning tree having the minimum possible weight. For any connected graph obviously exists the minimum spanning tree, but in the general case, a graph's minimum spanning tree is not unique.

Your task is to determine the following for each edge of the given graph: whether it is either included in any MST, or included at least in one MST, or not included in any MST.

输入格式

The first line contains two integers nn and mm ( 2<=n<=1052<=n<=10^{5} , ) — the number of the graph's vertexes and edges, correspondingly. Then follow mm lines, each of them contains three integers — the description of the graph's edges as " aia_{i} bib_{i} wiw_{i} " ( 1<=ai,bi<=n,1<=wi<=106,aibi1<=a_{i},b_{i}<=n,1<=w_{i}<=10^{6},a_{i}≠b_{i} ), where aia_{i} and bib_{i} are the numbers of vertexes connected by the ii -th edge, wiw_{i} is the edge's weight. It is guaranteed that the graph is connected and doesn't contain loops or multiple edges.

输出格式

Print mm lines — the answers for all edges. If the ii -th edge is included in any MST, print "any"; if the ii -th edge is included at least in one MST, print "at least one"; if the ii -th edge isn't included in any MST, print "none". Print the answers for the edges in the order in which the edges are specified in the input.

输入输出样例

  • 输入#1

    4 5
    1 2 101
    1 3 100
    2 3 2
    2 4 2
    3 4 1
    

    输出#1

    none
    any
    at least one
    at least one
    any
    
  • 输入#2

    3 3
    1 2 1
    2 3 1
    1 3 2
    

    输出#2

    any
    any
    none
    
  • 输入#3

    3 3
    1 2 1
    2 3 1
    1 3 1
    

    输出#3

    at least one
    at least one
    at least one
    

说明/提示

In the second sample the MST is unique for the given graph: it contains two first edges.

In the third sample any two edges form the MST for the given graph. That means that each edge is included at least in one MST.

首页