# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
777388 | 1bin | Just Long Neckties (JOI20_ho_t1) | C++14 | 210 ms | 21784 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define all(v) v.begin(), v.end()
typedef long long ll;
const int NMAX = 2e5 + 5;
ll n, x, b[NMAX], ans[NMAX];
vector<pair<ll, ll>> v;
multiset<ll> s;
int main(void){
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n;
for(int i = 0; i <= n; i++) {
cin >> x;
v.emplace_back(x, i);
}
for(int i = 0; i < n; i++) cin >> b[i];
sort(all(v));
sort(b, b + n);
for(int i = 0; i < n; i++) s.emplace(v[i + 1].first - b[i]);
ans[v[0].second] = max(*s.rbegin(), 0LL);
for(int i = 1; i <= n; i++){
auto&[x, ix] = v[i];
s.erase(s.find(x - b[i - 1]));
s.emplace(v[i - 1].first - b[i - 1]);
ans[ix] = max(*s.rbegin(), 0LL);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |