CF141E.Clearing Up

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

After Santa Claus and his assistant Elf delivered all the presents and made all the wishes come true, they returned to the North Pole and found out that it is all covered with snow. Both of them were quite tired and they decided only to remove the snow from the roads connecting huts. The North Pole has nn huts connected with mm roads. One can go along the roads in both directions.

The Elf offered to split: Santa Claus will clear up the wide roads and the Elf will tread out the narrow roads. For each road they decided who will clear it: Santa Claus or the Elf. To minimize the efforts they decided to clear the road so as to fulfill both those conditions:

  • between any two huts should exist exactly one simple path along the cleared roads;
  • Santa Claus and the Elf should clear the same number of roads.

At this point Santa Claus and his assistant Elf wondered which roads should they clear up?

输入格式

The first input line contains two positive integers nn and mm ( 1<=n<=1031<=n<=10^{3} , 1<=m<=1051<=m<=10^{5} ) — the number of huts and the number of roads. Then follow mm lines, each of them contains a road description: the numbers of huts it connects — xx and yy ( 1<=x,y<=n1<=x,y<=n ) and the person responsible for clearing out this road ("S" — for the Elf or "M" for Santa Claus). It is possible to go on each road in both directions. Note that there can be more than one road between two huts and a road can begin and end in the same hut.

输出格式

Print "-1" without the quotes if it is impossible to choose the roads that will be cleared by the given rule. Otherwise print in the first line how many roads should be cleared and in the second line print the numbers of those roads (the roads are numbered from 11 in the order of occurrence in the input). It is allowed to print the numbers of the roads in any order. Each number should be printed exactly once. As you print the numbers, separate them with spaces.

输入输出样例

  • 输入#1

    1 2
    1 1 S
    1 1 M
    

    输出#1

    0
    
    
  • 输入#2

    3 3
    1 2 S
    1 3 M
    2 3 S
    

    输出#2

    2
    2 1 
    
  • 输入#3

    5 6
    1 1 S
    1 2 M
    1 3 S
    1 4 M
    1 5 M
    2 2 S
    

    输出#3

    -1
    

说明/提示

A path is called simple if all huts on it are pairwise different.

首页