#include<bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
#define pb push_back
#define int long long
const int N=3e5+5;
void sbtsk1(int N, int D , int M){
vector<int>v;
for(int i=0;i<N;i++){
int a;
cin>>a;
v.pb(a);
}
sort(v.begin(),v.end());
int cnt=0;
for(auto i=v.begin();i!=v.end();i++){
int a=*i;
auto it= upper_bound(v.begin(),v.end(),a-D-1);
cnt+= i-it;
}
cout<<cnt;
}
void sbtsk2(int N, int D , int M){
vector<pair<int,int>>v;
for(int i=0;i<N;i++){
int x,y;
cin>>x>>y;
v.pb({x,y});
}
int cnt=0;
for(int i=0;i<N;i++){
for(int j=i+1;j<N;j++){
int d=abs(v[i].ff-v[j].ff)+abs(v[i].ss-v[j].ss);
if(d<=D)cnt++;
}
}
cout<<cnt;
}
signed main(){
int B,N,D,M;
cin>>B>>N>>D>>M;
if(B==1){
sbtsk1(N,D,M);
return 0;
}
if(B==2){
sbtsk2(N,D,M);
return 0;
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
18 ms |
1492 KB |
Output is correct |
2 |
Correct |
18 ms |
1492 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
31 ms |
1400 KB |
Output is correct |
2 |
Correct |
31 ms |
1492 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
31 ms |
1488 KB |
Output is correct |
2 |
Correct |
30 ms |
1492 KB |
Output is correct |
3 |
Correct |
30 ms |
1488 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
4062 ms |
2512 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
4043 ms |
2764 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
4041 ms |
2504 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |