結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー harurunharurun
提出日時 2021-11-15 00:20:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 2,665 ms
コンパイル使用メモリ 225,636 KB
実行使用メモリ 21,508 KB
最終ジャッジ日時 2024-09-20 03:08:15
合計ジャッジ時間 10,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 7 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 9 ms
5,376 KB
testcase_10 AC 9 ms
5,376 KB
testcase_11 AC 9 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 125 ms
9,056 KB
testcase_33 AC 85 ms
7,132 KB
testcase_34 AC 306 ms
10,036 KB
testcase_35 AC 157 ms
9,524 KB
testcase_36 AC 181 ms
10,488 KB
testcase_37 AC 97 ms
7,192 KB
testcase_38 AC 102 ms
8,684 KB
testcase_39 AC 190 ms
10,488 KB
testcase_40 AC 130 ms
9,228 KB
testcase_41 AC 180 ms
10,196 KB
testcase_42 AC 118 ms
9,076 KB
testcase_43 AC 126 ms
9,368 KB
testcase_44 AC 153 ms
10,228 KB
testcase_45 AC 118 ms
8,968 KB
testcase_46 AC 204 ms
10,628 KB
testcase_47 AC 53 ms
6,164 KB
testcase_48 AC 121 ms
9,288 KB
testcase_49 AC 207 ms
10,848 KB
testcase_50 AC 103 ms
7,380 KB
testcase_51 AC 99 ms
7,152 KB
testcase_52 AC 263 ms
15,016 KB
testcase_53 AC 263 ms
14,860 KB
testcase_54 AC 359 ms
21,508 KB
testcase_55 AC 348 ms
21,508 KB
testcase_56 AC 337 ms
21,380 KB
testcase_57 AC 344 ms
21,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
  int N,M;
  cin>>N>>M;
  map<string,int> um;
  for(int i=0;i<N;i++){
    string S;
    int A;
    cin>>S>>A;
    um.insert(make_pair(S,A));
  }
  for(int i=0;i<M;i++){
    string T;
    int B;
    cin>>T>>B;
    if(um.find(T)==um.end()){
      um.insert(make_pair(T,B));
    }else{
      um[T]=B;
    }
  }
  vector<pair<string,int>> ans;
  for(auto i:um){
    ans.push_back(i);
  }
  sort(ans.begin(),ans.end());
  for(auto i:ans){
    cout<<i.first<<" "<<i.second<<endl;
  }
  return 0;
}
0