답안 #386571

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
386571 2021-04-06T22:17:36 Z limabeans Road Construction (JOI21_road_construction) C++17
0 / 100
2243 ms 2097156 KB
#include <bits/stdc++.h>
using namespace std;

template<typename T>
void out(T x) { cout << x << endl; exit(0); }
#define watch(x) cout << (#x) << " is " << (x) << endl





using ll = long long;


const int maxn = 1e6 + 5;


ll dist(pair<int,int> a, pair<int,int> b) {
    return abs(a.first-b.first)+abs(a.second-b.second);
}

int n,k;
pair<int,int> a[maxn];

int main() {
    ios_base::sync_with_stdio(false); cin.tie(0);  cout.tie(0);

    cin>>n>>k;
    for (int i=0; i<n; i++) {
	cin>>a[i].first>>a[i].second;
    }

    vector<ll> res;
    for (int i=0; i<n; i++) {
	for (int j=i+1; j<n; j++) {
	    res.push_back(dist(a[i],a[j]));
	}
    }


    sort(res.begin(),res.end());
    for (int i=0; i<k; i++) {
	cout<<res[i]<<"\n";
    }
    
    
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 78 ms 7388 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2243 ms 2097156 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1966 ms 2097156 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1966 ms 2097156 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 78 ms 7388 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 78 ms 7388 KB Output isn't correct
2 Halted 0 ms 0 KB -