华为OJ:数据表记录包含表索引和数值,请对表索引相同的记录进行合并,即将相同索引的数值进行求和运算,输出按照key值升序进行输出。

输入描述:

先输入键值对的个数
然后输入成对的index和value值,以空格隔开

输出描述:

输出合并后的键值对(多行)

华为OJ:数据表记录包含表索引和数值,请对表索引相同的记录进行合并,即将相同索引的数值进行求和运算,输出按照key值升序进行输出。_第1张图片

#include 
#include 
#include 
using namespace std;

int main()
{
	int n;
	cin >> n;
	int i = 0;
	map dic;
	while (i < n)
	{
		int a,b;
		cin >> a >> b;
		if(dic.find(a) == dic.end())
			dic[a] = b;
		else
			dic[a] += b;
		i++;
	}
	map::iterator it;
	for (it = dic.begin(); it != dic.end(); it++)
	{
		cout << it->first << ' ' << it->second << '\n';
	}
	
	return 0;
}
#include 
#include 
using namespace std;
int main()
{
    int n, i;
    cin >> n;
    i = 0;
    map dic;
    while(i> a >> b;
        if(dic.find(a) == dic.end())
            dic[a] = b;
        else
            dic[a] += b;
        i++;
    }
    
    map::iterator it;
    for(it = dic.begin(); it != dic.end(); it++)
        cout << it->first << ' ' << it->second << '\n';
    
    return 0;
}  

 

 

你可能感兴趣的:(C/C++)