結果
| 問題 |
No.3085 Easy Problems
|
| コンテスト | |
| ユーザー |
沙耶花
|
| 提出日時 | 2025-04-04 21:24:11 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 727 ms / 2,000 ms |
| コード長 | 691 bytes |
| コンパイル時間 | 3,958 ms |
| コンパイル使用メモリ | 252,776 KB |
| 実行使用メモリ | 9,724 KB |
| 最終ジャッジ日時 | 2025-04-04 21:24:41 |
| 合計ジャッジ時間 | 28,030 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 31 |
ソースコード
#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001LL
int main() {
int n,q;
cin>>n;
vector<vector<int>> l(100005);
vector<int> t;
rep(i,n){
int a,b;
cin>>a>>b;
l[b].push_back(a);
t.push_back(a);
}
sort(t.begin(),t.end());
rep(i,l.size())sort(l[i].begin(),l[i].end());
cin>>q;
rep(_,q){
int x,y;
cin>>x>>y;
int ans = distance(t.begin(),upper_bound(t.begin(),t.end(),x));
ans-= distance(l[y].begin(),upper_bound(l[y].begin(),l[y].end(),x));
cout<<ans<<endl;
}
}
沙耶花