# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
844453 | vjudge1 | Spiderman (COCI20_spiderman) | C++17 | 1264 ms | 24216 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define endl "\n"
#define pb push_back
#define int long long
using namespace std;
const int inf = 2e18 + 5;
const int N = 2e5 + 5;
const int mod = 1e9 + 7;
int32_t main(){
//freopen("in.txt","r", stdin);
int n, k;
cin>>n>>k;
vector<pair<int, int> > h(n);
for(int i = 0; i < n; i++){
cin>>h[i].first;
h[i].second = i;
}
sort(h.begin(), h.end());
vector<int> ans(n);
map<int, int> mp;
if(k > 0){
for(int i = 0; i < n; i++){
if(h[i].first < k){
ans[h[i].second] = 0;
}
else if(h[i].first == k){
ans[h[i].second] = (n - i - 1);
}
else{
int x = h[i].first - k, cnt = 0;
for(int j = 1; j * j <= x; j++){
if(x%j == 0){
if(j > k) cnt += mp[j];
if(x/j != j && x/j > k) cnt += mp[x/j];
//if(x == 6) cout<<j<<" "<<x/j<<" "<<mp[j]<<" "<<mp[x/j]<<" "<<cnt<<endl;
}
}
ans[h[i].second] = cnt;
}
mp[h[i].first]++;
}
}
else{
for(int i = 0; i < n; i++) mp[h[i].first]++;
for(int i = 0; i < n; i++){
int x = h[i].first - k, cnt = 0;
for(int j = 1; j * j <= x; j++){
if(x%j == 0){
cnt += mp[j];
if(x/j != j) cnt += mp[x/j];
//if(x == 6) cout<<j<<" "<<x/j<<" "<<mp[j]<<" "<<mp[x/j]<<" "<<cnt<<endl;
}
}
ans[h[i].second] = cnt - 1;
}
}
for(int i = 0; i < n; i++){
cout<<ans[i]<<" ";
}
cout<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |