UVa 12504 - Updating a Dictionary(数据处理)

给出旧字典和新字典,输出字典的变化增加+、减少-、更改*。

保存字典之后对比就好,但是注意在没有那项变动时不要多输出符号。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<vector>
#include<set>
#include<map>
using namespace std;
struct key_value{
string key,value;
};
set<string>key;
vector<string>change[3];
map<string,string>dict[2];
int main(){
int t,flag=1;
key_value x,y;
cin>>t;
getchar();
while(t--){
dict[0].clear();
dict[1].clear();
for(int i=0;i<3;i++) change[i].clear();
change[0].push_back("+");
change[1].push_back("-");
change[2].push_back("*");
key.clear();
char c;
for(int i=0;i<2;){
c=getchar();
if(c=='{'){
flag=1;
x=y;
continue;
}
if(c=='}'){
if(x.key!=""&&x.value!=""){
dict[i][x.key]=x.value;
key.insert(x.key);
}
i++;
getchar();
continue;
}
if(c==','||c==':'){
flag=!flag;
if(c==','){
dict[i][x.key]=x.value;
key.insert(x.key);
x=y;
}
continue;
}
if(flag) x.key+=c;
else x.value+=c;
}
for(set<string>::iterator it=key.begin();it!=key.end();it++){
if(!dict[0].count(*it)) change[0].push_back(*it);
else if(!dict[1].count(*it)) change[1].push_back(*it);
else if(dict[0][*it]!=dict[1][*it]) change[2].push_back(*it);
}
int k=0;
for(int i=0;i<3;i++){
int first=2;
if(change[i].size()-1){
for(int j=0;j<change[i].size();j++){
if(first) first--;
else cout<<",";
cout<<change[i][j];
}
cout<<endl;
k++;
}
}
if(!k) cout<<"No changes"<<endl;
cout<<endl;
}
return 0;
}

** 本文迁移自我的CSDN博客,格式可能有所偏差。 **