結果
問題 |
No.3085 Easy Problems
|
ユーザー |
|
提出日時 | 2025-04-05 02:29:36 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 685 bytes |
コンパイル時間 | 1,811 ms |
コンパイル使用メモリ | 167,952 KB |
実行使用メモリ | 16,072 KB |
最終ジャッジ日時 | 2025-04-05 02:29:44 |
合計ジャッジ時間 | 7,359 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | TLE * 1 -- * 30 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<ll,ll> P; #define REP(i,n) for(int i=0;i<int(n);i++) vector<int> b[100010]; int main(void){ cin.tie(nullptr); ios_base::sync_with_stdio(false); int i,j; int N; cin >> N; vector<int> a(N); REP(i,N){ int A,B; cin >> A >> B; b[B].push_back(A); a[i]=A; } sort(a.begin(),a.end()); REP(i,100005) sort(b[i].begin(),b[i].end()); int Q; cin >> Q; while(Q--){ int X,Y; cin >> X >> Y; int x=upper_bound(a.begin(),a.end(),X)-a.begin(); vector<int> d=b[Y]; int s=upper_bound(d.begin(),d.end(),X)-d.begin(); cout << x-s << endl; } return 0; }