QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#600128#6560. Broken Minimum Spanning Treeucup-team132#WA 0ms3748kbC++203.2kb2024-09-29 14:54:242024-09-29 14:54:25

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3712kb

input:

4 4
1 2 10
2 3 3
3 4 1
1 4 4

output:

1
1 4

result:

ok correct!

Test #2:

score: -100
Wrong Answer
time: 0ms
memory: 3748kb

input:

6 8
1 2 10
2 3 10
3 4 10
4 5 10
5 6 10
6 1 10
1 3 1
4 6 1

output:

1
2 7

result:

FAIL participant's MST is better than jury!