結果

問題 No.647 明太子
ユーザー kpinkcatkpinkcat
提出日時 2023-08-19 15:18:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 905 bytes
コンパイル時間 874 ms
コンパイル使用メモリ 87,288 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-06 22:22:29
合計ジャッジ時間 3,393 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 RE -
testcase_13 AC 5 ms
5,376 KB
testcase_14 RE -
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
using namespace std;

int main()
{
    int n, m, max1 = 0;
    cin >> n;
    vector<vector<int>> mem(n, vector<int> (2));
    for (int i = 0; i < n; i++) cin >> mem[i][0] >> mem[i][1];
    cin >> m;
    vector<vector<int>> ment(m, vector<int> (2));
    for (int i = 0; i < n; i++) cin >> ment[i][0] >> ment[i][1];
    vector<int> bought(m, 0);
    for (int i = 0; i < n; i++){
        for (int j = 0; j < m; j++){
            if (ment[j][0] <= mem[i][0] && ment[j][1] >= mem[i][1]) bought[j]++;
        }
    }
    vector<int> mir = {0};
    for (int i = 0; i < m; i++){
        if (bought[i] > max1){
            max1 = bought[i];
            mir.clear();
            mir.push_back(i+1);
        } else if (bought[i] && (bought[i] == max1)){
            mir.push_back(i+1);
        }
    }
    for (auto x : mir) cout << x << endl;
}
0