結果
| 問題 | No.3085 Easy Problems |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2026-01-20 02:16:40 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 951 bytes |
| 記録 | |
| コンパイル時間 | 2,154 ms |
| コンパイル使用メモリ | 229,408 KB |
| 実行使用メモリ | 813,872 KB |
| 最終ジャッジ日時 | 2026-01-20 02:16:51 |
| 合計ジャッジ時間 | 7,573 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | RE * 2 MLE * 1 -- * 28 |
ソースコード
// BISMILLAH
// created by kamran
// Date: 2026-01-19 21:36
#include <bits/stdc++.h>
using namespace std;
#define fast ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define int long long
#define nl endl
signed main() {
fast;
int n;
cin>>n;
vector<pair<int,int>>x(n);
for(int i=0;i<n;i++){
cin>>x[i].first;
cin>>x[i].second;
}
sort(x.begin(),x.end());
vector<map<int,int>>type;
map<int,int>temp;
for(int i=0;i<n;i++){
temp[x[i].second]++;
type.push_back(temp);
}
int m;
cin>>m;
while(m--){
int a,b;
cin>>a>>b;
int low=0;
int high=n-1;
while(low<=high){
int mid=low+(high-low)/2;
if(x[mid].first<=a)low=mid+1;
else high=mid-1;
}
int ans=high+1;
ans-=type[high][b];
//cout<<type[high][b]<<nl;
cout<<ans<<nl;
}
return 0;
}
vjudge1