CF1842D.Tenzing and His Animal Friends
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Tell a story about me and my animal friends.
Tenzing has n animal friends. He numbers them from 1 to n .
One day Tenzing wants to play with his animal friends. To do so, Tenzing will host several games.
In one game, he will choose a set S which is a subset of {1,2,3,...,n} and choose an integer t . Then, he will play the game with the animals in S for t minutes.
But there are some restrictions:
- Tenzing loves friend 1 very much, so 1 must be an element of S .
- Tenzing doesn't like friend n , so n must not be an element of S .
- There are m additional restrictions. The i -th special restriction is described by integers ui , vi and yi , suppose x is the total time that exactly one of ui and vi is playing with Tenzing. Tenzing must ensure that x is less or equal to yi . Otherwise, there will be unhappiness.
Tenzing wants to know the maximum total time that he can play with his animal friends. Please find out the maximum total time that Tenzing can play with his animal friends and a way to organize the games that achieves this maximum total time, or report that he can play with his animal friends for an infinite amount of time. Also, Tenzing does not want to host so many games, so he will host at most n2 games.
输入格式
The first line of input contains two integers n and m ( 2≤n≤100 , 0≤m≤2n(n−1) ) — the number of animal friends and the number of special restrictions.
The i -th of the following m lines of input contains three integers ui , vi and yi ( 1≤ui<vi≤n , 0≤yi≤109 ) — describing the i -th special restriction. It is guaranteed that for 1≤i<j≤m , (ui,vi)=(uj,vj) .
输出格式
If Tenzing can play with his animal friends for an infinite amount of time, output "inf". (Output without quotes.)
Otherwise, in the first line, output the total time T ( 0≤t≤1018 ) and the number of games k ( 0≤k≤n2 ).
In the following k lines of output, output a binary string s of length n and an integer t ( 0≤t≤1018 ) — representing the set S and the number of minutes this game will be played. If si=1 , then i∈S , otherwise if si=0 , then i∈/S .
Under the constraints of this problem, it can be proven that if Tenzing can only play with his friends for a finite amount of time, then he can only play with them for at most 1018 minutes.
输入输出样例
输入#1
5 4 1 3 2 1 4 2 2 3 1 2 5 1
输出#1
4 4 10000 1 10010 1 10100 1 11110 1
输入#2
3 0
输出#2
inf
说明/提示
In the first test case:
- Tenzing will host a game with friend {1} for 1 minute.
- Tenzing will host a game with friends {1,4} for 1 minute.
- Tenzing will host a game with friends {1,3} for 1 minute.
- Tenzing will host a game with friends {1,2,3,4} for 1 minute.
If after that, Tenzing host another game with friends {1,2} for 1 minute. Then the time of exactly one of friends 2 or 3 with Tenzing will becomes 2 minutes which will not satisfy the 3 -rd special restriction.
In the second test case, there is no special restrictions. So Tenzing can host a game with friend {1} for an infinite amount of time.