# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
148299 | youssefbou62 | 이상적인 도시 (IOI12_city) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
// #include "city.h"
#pragma GCC optimize ("O3")
using namespace std;
#define mp make_pair
#define fi first
#define se second
#define all(v) v.begin(),v.end()
#define allarr(a) a , a + n
#define ll long long
#define ull unsigned long long
#define pb push_back
#define fastio ios_base::sync_with_stdio(false) ; cin.tie(NULL); cout.tie(NULL)
typedef pair<int, int> pi;
typedef pair<ll,ll> pll;
typedef pair<int,pi> trp ;
typedef vector<pi> vpi;
typedef vector<pll> vpll ;
// int ab (int x ) { return (x>0?x:-x); }
ll ans ;
int root ;
const int N = 2e5+5;
// int visited[N] ;
const ll mod = 1e9 ;
ll x[N],y[N];
// void bfs(int root ){
// int u = root;
// queue<int> q;
// q.push(u);
// visited[u]=0;
// int dx [][2] ={{0,-1},{0,1},{1,0},{-1,0}};
// while(!q.empty()){
// u = q.front();
// q.pop();
// // cout << visited[u]<<" " << ans <<endl;
// if( u >= root )ans += visited[u] , ans %= mod;
// for(int i = 0 ; i < 4 ; i++ ){
// int xx = x[u]+dx[i][0] ;
// int yy = y[u]+dx[i][1] ;
// if( xx >= 0 && yy >= 0 &¬E[xx][yy]!=-1&& visited[notE[xx][yy]]==-1 ){
// visited[notE[xx][yy]] = visited[u]+1;
// q.push(notE[xx][yy]);
// }
// }
// }
// }
int DistanceSum(int N, ll *X, ll *Y){
ll sum = 0 ;
for(int i = 0 ; i < N ; i++ ){
x[i] = X[i] ;
y[i] = Y[i] ;
}
ll ans = 0 ;
for(int i = 0 ; i < N ; i++ ){
for(int j = i + 1 ; j < N ; j++ ){
ans += abs(x[j]-x[i])+abs(y[j]-y[i]) ;
ans %= mod ;
}
}
return ans;
}
// int main(){
// int n ; cin >> n ; for(int i = 0 ; i < n ; i++ )cin >> x[i]>>y[i] ; cout << DistanceSum(n,x,y)<<endl;
// }