当前位置: 首页 > 工具软件 > Bulbasaur > 使用案例 >

D Bulbasaur | 时间限制:1 秒 | 内存限制:256M

冯阳成
2023-12-01

Silph company deployed a passenger flow analysis system in a clothing store that captures photos of human faces and photos of human bodies in real time.

In order to analyze the passenger flow better, the system will associate human faces with human bodies. In other words, there are some edges connecting faces with bodies. Each edge has a positive weight.

However, due to lack of precision and accuracy of the algorithms provided by this company, these associations may not be completely correct.

In a correct relationship, one human face can associate with multiple human bodies (one person may change multiple suits of clothes), but one human body cannot associate with multiple human faces.

Now Bulbasaur works as an intern at Silph company and the boss asks him to solve this problem. Bulbasaur is supposed to find an association relationship, such that the sum of weights of the association edges is maximum.

输入描述:

The input starts with one line containing exactly one integer T, which is the number of test cases.

For each test case, the first line contains three integers n, m and k, indicating the number of face photos, the number of body photos, and the number of existing association edges, respectively.

Then followed by k lines, each consists of three integers ai, bi and ci, representing an edge weighted ci connecting the ai-th face photo with the bi-th body photo.

1 ≤ T ≤ 5.

1 ≤ n, m, k ≤10.

1 ≤ ai ≤ n.

1 ≤ bi ≤ m.

1 ≤ ci ≤ 109 .

输出描述:

For each test case, output one line containing "Case #x: y", where x is the test case number (starting from 1) and y is the maximum sum of weights of the association edges.

输入

1
2 3 3
1 2 1919
1 3 810
2 2 450

输出

Case #1: 2729

#include<iostream>
#include<algorithm>
#include<cstring>

using namespace std;
long long a[100005];
int main(){
		int t,n,m,k;
		cin>>t;
		for(int p = 1 ;p <= t;p++){
			memset(a,0,sizeof(a));	
			cin>>n>>m>>k;
			long long maxn = 0;
				for(int i = 0;i < k;i++){
				int  ai,bi;
				long long ci;
				cin>>ai>>bi>>ci;
				if(a[bi] < ci){
					if(a[bi]!=0)    //以人体为标准计算
					maxn = maxn - a[bi];
				a[bi] = ci ;
				maxn = maxn + a[bi];
				}
			}
			printf("Case #%d: %lld\n",p,maxn);
		}
} 

 

 类似资料: