F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

Maximum Spanning Forest

Time Limit: 14000/7000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)
Total Submission(s): 171    Accepted Submission(s): 25


Problem Description
In graph theory, a maximum spanning tree is a subgraph that is a tree and connects all the vertices with maximum weight sum. And a maximum spanning forest is the union of maximum spanning trees of each connected component in the graph.

A big undirected graph $G=(V,E)$ is given, which $V=\{(x,y) : 1 \le x,y \le 2,000,000,000;~x,y\in\mathbb{Z}\}$ and $E=\{\}$ initially. You're task is to write a program that support operation $x_1,y_1,x_2,y_2,c$:

First, add some edges in $G$. You should add an edge between $(a_1, b_1)$ and $(a_2, b_2)$ with weight $c$ if $x_1 \le a_1,a_2 \le x_2$, $y_1 \le b_1, b_2 \le y_2$ and $|a_1 - a_2| + |b_1 - b_2| = 1$.

Second, calculate the maximum spanning forest of $G$ after edges added.
 

Input
The first line of input contains an integer $T$ indicating the total number of test cases.

The first line of each test case has an integers $n$, indicating the number of operations. The $n$ lines that follow describe the operations. Each of these lines has $5$ integers $x_1,y_1,x_2,y_2,c$, separated by a single space.

Limitations:

$1 \le T \le 500$
$1 \le n \le 100$
$1 \le x_1 \le x_2 \le 2,000,000,000$
$1 \le y_1 \le y_2 \le 2,000,000,000$
$1 \le c \le 1,000,000,000$
There are at most $20$ testcases with $n > 50$.
 

Output
For each operation, output a number in a line that indicates the weight of maximum spanning forest mod $10^9+7$.
 

Sample Input
2 3 2 2 3 3 1 1 2 2 3 2 1 1 1 3 5 1 1 1 2000000000 2000000000 1000000000
 

Sample Output
3 8 16 999998642
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-05-09 02:13:59, Gzip enabled