結果

問題 No.647 明太子
ユーザー 👑 CleyLCleyL
提出日時 2020-01-27 23:54:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 906 bytes
コンパイル時間 1,089 ms
コンパイル使用メモリ 80,704 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-14 16:35:21
合計ジャッジ時間 2,388 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef pair<int,int> P;
int main(){
    int n;cin>>n;
    vector<P> p(n);
    for(int i = 0; n > i; i++){
        cin>>p[i].first >> p[i].second;
    }
    
    int m;cin>>m;
    vector<P> f(m);
    vector<P> A(m);
    for(int i = 0; m > i; i++){
        cin>>f[i].first >> f[i].second;
        A[i].first = 0;
        A[i].second = i+1;
        
    }
    for(int i = 0; m > i; i++){
        for(int j = 0; n > j; j++){
            if(p[j].first >= f[i].first && p[j].second <= f[i].second){
                A[i].first++;
            }
        }
    }
    sort(A.begin(),A.end(),greater<P>());
    vector<int> Ans;
    for(int i = 0; A[0].first==A[i].first; i++){
        Ans.push_back(A[i].second);
    }
    sort(Ans.begin(),Ans.end());
    for(int i = 0; Ans.size() > i; i++){
        cout << Ans[i] << endl;
    }
    
}
0