結果

問題 No.3085 Easy Problems
コンテスト
ユーザー vjudge1
提出日時 2026-01-03 17:32:07
言語 C++11(廃止可能性あり)
(gcc 15.2.0 + boost 1.89.0)
結果
WA  
実行時間 -
コード長 1,419 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,050 ms
コンパイル使用メモリ 198,120 KB
実行使用メモリ 25,276 KB
最終ジャッジ日時 2026-01-03 17:32:31
合計ジャッジ時間 22,725 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 31
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void solve()':
main.cpp:33:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   33 |     for(auto [x,y]:a)query.push_back({x,y,id++});
      |              ^
main.cpp:57:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   57 |     for(auto [x,y,id]:query){
      |              ^

ソースコード

diff #
raw source code

// Source: https://usaco.guide/general/io
//who needs macros when you have usaco
#include <bits/stdc++.h>
using namespace std;
#define int long long

#define fastnuces ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t = 1;



void solve(){
	int n;
    cin>>n;
    vector<pair<int,int>>a(n);

    for(int i=0;i<n;++i){
        int x,y;
        cin>>x>>y;
        a[i]={x,y};
    }

    vector<array<int,3>>query;

    int q;
    cin>>q;
    int id=0;
    for(int i=0;i<q;++i){
        int x,y;
        cin>>x>>y;
        query.push_back({x,y,id++});
    }

    for(auto [x,y]:a)query.push_back({x,y,id++});

    sort(query.begin(),query.end(),[&](array<int,3>&a1, array<int,3>&b){


        if(a1[0]!=b[0])return a1[0]<b[0];

        if(a1[2]>=q and b[2]>=q){
            return a1[1]>b[1];
        }

         if(a1[2]<q and b[2]<q){
            return a1[1]>b[1];
        }

        if(a1[2]>=q and b[2]<q)return true;
        if(a1[2]<q and b[2]>=q)return false;
        return a1[2]<b[2];
    }
    );

    int pref=0;
    map<int,int>freq;
    vector<int>ans(q);
    for(auto [x,y,id]:query){

        if(id<q){
            ans[id] = pref-freq[y];
        }
        else{
            freq[y]++;
            pref++;
        }
    }

    for(int i:ans)cout<<i<<endl;
    cout<<endl;
    
}

signed main(){

    fastnuces;
   // for(int i=100;i>=1;--i)dfs(i);
    //cin>>t;

    while(t--){
        solve();
    }
}
0