結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー mmn15277198mmn15277198
提出日時 2021-12-24 11:09:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 1,459 ms
コンパイル使用メモリ 113,928 KB
実行使用メモリ 21,512 KB
最終ジャッジ日時 2024-09-20 03:23:03
合計ジャッジ時間 8,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 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 8 ms
5,376 KB
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 10 ms
5,376 KB
testcase_10 AC 9 ms
5,376 KB
testcase_11 AC 8 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 117 ms
9,056 KB
testcase_33 AC 85 ms
7,136 KB
testcase_34 AC 169 ms
10,124 KB
testcase_35 AC 147 ms
9,656 KB
testcase_36 AC 173 ms
10,484 KB
testcase_37 AC 94 ms
7,196 KB
testcase_38 AC 95 ms
8,604 KB
testcase_39 AC 180 ms
10,364 KB
testcase_40 AC 128 ms
9,356 KB
testcase_41 AC 175 ms
10,072 KB
testcase_42 AC 116 ms
9,080 KB
testcase_43 AC 126 ms
9,368 KB
testcase_44 AC 151 ms
10,096 KB
testcase_45 AC 113 ms
8,972 KB
testcase_46 AC 191 ms
10,628 KB
testcase_47 AC 53 ms
6,164 KB
testcase_48 AC 121 ms
9,164 KB
testcase_49 AC 201 ms
10,844 KB
testcase_50 AC 105 ms
7,376 KB
testcase_51 AC 91 ms
7,216 KB
testcase_52 AC 247 ms
15,016 KB
testcase_53 AC 246 ms
14,984 KB
testcase_54 AC 335 ms
21,380 KB
testcase_55 AC 327 ms
21,512 KB
testcase_56 AC 331 ms
21,512 KB
testcase_57 AC 316 ms
21,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
#include <queue>
#include <map>
#include <cmath>
#include <iomanip>
#include <set>
#include <cstdio>
#include <string>

using namespace std;

int main() {
  int n, m;
  cin >> n >> m;
  map<string, int> mp;
  for (int i = 0; i < n; i++) {
    string s;
    int r;
    cin >> s >> r;
    mp[s] = r;
  }
  for (int i = 0; i < m; i++) {
    string s;
    int r;
    cin >> s >> r;
    mp[s] = r;
  }
  vector<pair<string, int> > p;
  for (auto i : mp) {
    p.push_back(make_pair(i.first, i.second));
  }
  sort(p.begin(), p.end());
  for (int i = 0; i < p.size(); i++) {
    cout << p[i].first << " " << p[i].second << endl;
  }
  return 0;
}
0