湖南省第八屆大學生電腦程式設計競賽C題 Updating a Dictionary

來源:互聯網
上載者:User

  湖南省第八屆大學生電腦程式設計競賽C題 Updating a Dictionary(題目連結)。

Problem C     Updating a Dictionary

In this problem, a dictionary is collection of key-value pairs, where keys are lower-case letters, and values are non-negative integers. Given an old dictionary and a new dictionary, find out what were changed.

Each dictionary is formatting as follows:

{key:value,key:value,...,key:value}

Each key is a string of lower-case letters, and each value is a non-negative integer without leading zeros or prefix `+'. (i.e. -4, 03 and +77 are illegal). Each key will appear at most once, but keys can appear in any order.

Input

The first line contains the number of test cases T ( T≤1000). Each test case contains two lines. The first line contains the old dictionary, and the second line contains the new dictionary. Each line will contain at most 100 characters and will not contain any whitespace characters. Both dictionaries could be empty.

WARNING: there are no restrictions on the lengths of each key and value in the dictionary. That means keys could be really long and values could be really large.

Output

For each test case, print the changes, formatted as follows:

  • First, if there are any new keys, print `+' and then the new keys in increasing order (lexicographically), separated by commas.
  • Second, if there are any removed keys, print `-' and then the removed keys in increasing order (lexicographically), separated by commas.
  • Last, if there are any keys with changed value, print `*' and then these keys in increasing order (lexicographically), separated by commas.

If the two dictionaries are identical, print `No changes' (without quotes) instead.

Print a blank line after each test case.

Sample Input

3
{a:3,b:4,c:10,f:6}
{a:3,c:5,d:10,ee:4}
{x:1,xyz:123456789123456789123456789}
{xyz:123456789123456789123456789,x:1}
{first:1,second:2,third:3}
{third:3,second:2}

Sample Output

+d,ee
-b,f
*c

No changes

-first

 

 

 

 

  解題思路:題目要求按字典序輸出,由於map和set都會按照operator<自動排序,正好string類有operator<函數,因此就用這兩個。map映射一個key,value對。把舊字典的資料插入這個map中。新字典與它比較,如果沒找到,添加到add集合中。如果找到了則刪除,刪除前判斷value值是否相同,如果不同,就插入change集合。如此一來,沒刪除的就是"-"的元素。然後先後輸出add集合、"-"的元素和change集合的元素即可。C++語言代碼如下:

#include <cstdio>#include <cstdlib>#include <string>#include <cctype>#include <map>#include <set>using namespace std;#define MAX_LENGTH 200int main ( ){    int test_cases;    char line[MAX_LENGTH];    string  key, value;    map <string, string> dic;    set <string> add, change;    scanf( "%d", &test_cases );    gets( line );    while ( test_cases -- )    {        key = value = "";        dic.clear( );        gets( line );        for ( int i = 1 ; line[i] != '\0' ; i ++ )        {            if ( isdigit(line[i]) )                value += line[i];            else if ( isalpha(line[i]) )                key += line[i];            else if ( line[i] == ',' )            {                dic.insert( make_pair<string, string>(key, value) );                key = value = "";            }            else if ( line[i] == '}' )            {                if ( key != "" )                    dic.insert( make_pair<string, string>(key, value) );                key = value = "";            }        }        add.clear( );        change.clear( );        gets( line );        for ( int i = 1 ; line[i] != '\0' ; i ++ )        {            if ( isdigit(line[i]) )                value += line[i];            else if ( isalpha(line[i]) )                key += line[i];            else if ( line[i] == ',' )            {                map <string, string> :: iterator  it = dic.find( key );                if ( it == dic.end( ) )                    add.insert( key );                else                {                    if ( it->second != value )                        change.insert( key );                    dic.erase( it );                }                key = value = "";            }            else if ( line[i] == '}' )            {                if ( key != "" )                {                    map <string, string> :: iterator  it = dic.find( key );                    if ( it == dic.end( ) )                        add.insert( key );                    else                    {                        if ( it->second != value )                            change.insert( key );                        dic.erase( it );                    }                    key = value = "";                }            }        }        if ( dic.size( ) == 0 && add.size( ) == 0 && change.size( ) == 0 )            puts( "No changes" );        else        {            if ( add.size( ) != 0 )            {                set <string> :: const_iterator  it;                it = add.begin( );                printf( "+%s", it->c_str( ) );                for ( ++ it ; it != add.end( ) ; ++ it )                    printf( ",%s", it->c_str( ) );                puts( "" );            }            if ( dic.size( ) != 0 )            {                map <string, string> :: const_iterator  it;                it = dic.begin( );                printf( "-%s", it->first.c_str( ) );                for ( ++ it ; it != dic.end( ) ; ++ it )                    printf( ",%s", it->first.c_str( ) );                puts( "" );            }            if ( change.size( ) != 0 )            {                set <string> :: const_iterator  it;                it = change.begin( );                printf( "*%s", it->c_str( ) );                for ( ++ it ; it != change.end( ) ; ++ it )                    printf( ",%s", it->c_str( ) );                puts( "" );            }        }        puts( "" );    }    return EXIT_SUCCESS;}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.