結果

問題 No.3197 Frequency Counter
ユーザー otoshigo
提出日時 2025-07-11 22:28:36
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 982 bytes
コンパイル時間 3,516 ms
コンパイル使用メモリ 281,892 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2025-07-11 22:28:45
合計ジャッジ時間 6,059 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (ll i = s; i < (ll)(t); i++)
#define rrep(i, s, t) for(ll i = (ll)(t) - 1; i >= (ll)(s); i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)

#define TT template<typename T>
TT using vec = vector<T>;
template<class T1, class T2> bool chmin(T1 &x, T2 y) { return x > y ? (x = y, true) : false; }
template<class T1, class T2> bool chmax(T1 &x, T2 y) { return x < y ? (x = y, true) : false; }

struct io_setup {
    io_setup() {
        ios::sync_with_stdio(false);
        std::cin.tie(nullptr);
        cout << fixed << setprecision(15);
    }
} io_setup;

void solve(){
    int N;
    cin>>N;
    vector<int>A(N);
    map<int,int>mp;
    rep(i,0,N){
        cin>>A[i];
        mp[A[i]]++;
    }
    int Q;
    cin>>Q;
    while(Q--){
        int x,k;
        cin>>x>>k;
        if(mp[x]>=k)cout<<"Yes\n";
        else cout<<"No\n";
    }
}

int main() {
    solve();
}
0