結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー ygd.ygd.
提出日時 2022-01-05 00:00:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 620 ms / 2,000 ms
コード長 1,136 bytes
コンパイル時間 5,092 ms
コンパイル使用メモリ 281,552 KB
実行使用メモリ 21,132 KB
最終ジャッジ日時 2024-10-15 03:03:23
合計ジャッジ時間 16,481 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 10 ms
6,816 KB
testcase_05 AC 10 ms
6,816 KB
testcase_06 AC 11 ms
6,820 KB
testcase_07 AC 10 ms
6,816 KB
testcase_08 AC 12 ms
6,820 KB
testcase_09 AC 14 ms
6,820 KB
testcase_10 AC 13 ms
6,820 KB
testcase_11 AC 12 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,824 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 199 ms
8,532 KB
testcase_33 AC 149 ms
6,936 KB
testcase_34 AC 294 ms
9,652 KB
testcase_35 AC 256 ms
9,140 KB
testcase_36 AC 306 ms
9,972 KB
testcase_37 AC 163 ms
6,992 KB
testcase_38 AC 176 ms
8,304 KB
testcase_39 AC 324 ms
9,936 KB
testcase_40 AC 227 ms
8,720 KB
testcase_41 AC 296 ms
9,680 KB
testcase_42 AC 198 ms
8,444 KB
testcase_43 AC 229 ms
8,992 KB
testcase_44 AC 279 ms
9,580 KB
testcase_45 AC 197 ms
8,588 KB
testcase_46 AC 336 ms
10,104 KB
testcase_47 AC 97 ms
6,816 KB
testcase_48 AC 222 ms
8,744 KB
testcase_49 AC 346 ms
10,204 KB
testcase_50 AC 182 ms
7,320 KB
testcase_51 AC 166 ms
7,028 KB
testcase_52 AC 409 ms
14,500 KB
testcase_53 AC 408 ms
14,480 KB
testcase_54 AC 602 ms
21,004 KB
testcase_55 AC 600 ms
20,620 KB
testcase_56 AC 620 ms
20,568 KB
testcase_57 AC 593 ms
21,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG //遅い可能性がある 
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(a) (a).begin(),(a).end() //lower_bound(ALL(a),x)
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<vector<int>>;
template <typename T>
bool chmax(T &a, const T& b) {
  if (a < b) {
    a = b;  // aをbで更新
    return true;
  }
  return false;
}
template <typename T>
bool chmin(T &a, const T& b) {
  if (a > b) {
    a = b;  // aをbで更新
    return true;
  }
  return false;
}
int INF = 100100100;

int main() {
    int n,m;
    cin >> n >> m;
    map<string, int> rating;
    rep(i,n) {
        string name;
        int r;
        cin >> name >> r;
        rating[name] = r;
    }
    rep(i,m) {
        string name;
        int nr;
        cin >> name >> nr;
        rating[name] = nr;
    }
    vector<string> ret;
    for (auto i = rating.begin(); i != rating.end(); i++) {
        ret.push_back(i -> first);
    }
    sort(ALL(ret));
    for (auto ans: ret) {
        cout << ans << " " << rating[ans] << endl;
    }
}
0