# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
496964 | vinnipuh01 | Coin Collecting (JOI19_ho_t4) | C++17 | 1 ms | 284 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <bits/stdc++.h>
#include <cmath>
#include <algorithm>
#include <vector>
#include <deque>
#include <set>
#include <stack>
#include <string>
#include <map>
#include <queue>
#define int long long
using namespace std;
const long long oo = 1000000000000000000;
long long sum, ans = 0, mx = 0, mn = 1000000000, num, pos;
/*
ViHHiPuh
(( `'-""``""-'` ))
)-__-_.._-__-(
/ --- (o _ o) --- \
\ .-* ( .0. ) *-. /
_'-. ,_ '=' _, .-'_
/ `;#'#'# - #'#'#;` \
\_)) -----'#'----- ((_/
# --------- #
'# ------- ------ #'
/..-'# ------- #'-.\
_\...-\'# -- #'/-.../_
((____)- '#' -(____))
cout << fixed << setprecision(6) << x;
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
freopen ( "sum.in", "r", stdin )
*/
int bl[ 1000001 ][ 3 ];
queue <pair<int, int> > q, qq;
int d( int x, int y, int xx, int yy ) {
return abs( x - xx ) + abs( y - yy );
}
main () {
int n;
cin >> n;
pair<int, int> a[ n + n + 1 ];
int y, x;
int x1, y1, x2, y2, x3, y3, x4, y4;
x1 = y1 = 1;
x2 = 1, y2 = 2;
x3 = n, y3 = 1;
x4 = n, y4 = 2;
for ( int i = 1; i <= n + n; i ++ ) {
cin >> a[ i ].first >> a[ i ].second;
if ( a[ i ].second <= 1 ) {
y = 1;
if ( a[ i ].first >= 1 && a[ i ].first <= n )
x = a[ i ].first;
else {
if ( a[ i ].first < 1 )
x = 1;
else
x = n;
}
}
else {
y = 2;
if ( a[ i ].first >= 1 && a[ i ].first <= n )
x = a[ i ].first;
else {
if ( a[ i ].first < 1 )
x = 1;
else
x = n;
}
}
ans += d( x, y, a[ i ].first, a[ i ].second );
bl[ x ][ y ] ++;
}
for ( int i = 1; i <= n; i ++ ) {
for ( int j = 1; j <= 2; j ++ ) {
if ( !bl[ i ][ j ] ) {
if ( j == 1 )
q.push( { i, j } );
else
qq.push( { i, j } );
}
}
}
for ( int i = 1; i <= n; i ++ ) {
for ( int j = 1; j <= 2; j ++ ) {
while ( bl[ i ][ j ] > 1 ) {
if ( !q.size() ) {
ans += d( i, j, qq.front().first, qq.front().second );
qq.pop();
bl[ i ][ j ] --;
continue;
}
if ( !qq.size() ) {
ans += d( i, j, q.front().first, q.front().second );
q.pop();
bl[ i ][ j ] --;
continue;
}
if ( j == 1 ) {
if ( q.front().first >= i && qq.front().first >= i ) {
ans += d( i, j, q.front().first, q.front().second );
q.pop();
bl[ i][ j ] --;
continue;
}
if ( q.front().first <= i && qq.front().first <= i ) {
ans += d( i, j, q.front().first, q.front().second );
q.pop();
bl[ i][ j ] --;
continue;
}
}
else {
if ( q.front().first > i && qq.front().first > i ) {
ans += d( i, j, qq.front().first, qq.front().second );
qq.pop();
bl[ i][ j ] --;
continue;
}
if ( q.front().first <= i && qq.front().first <= i ) {
ans += d( i, j, qq.front().first, qq.front().second );
qq.pop();
bl[ i][ j ] --;
continue;
}
}
if ( q.front().first <= i && qq.front().first >= i ) {
ans += d( i, j, q.front().first, q.front().second );
q.pop();
bl[ i][ j ] --;
continue;
}
if ( q.front().first >= i && qq.front().first <= i ) {
ans += d( i, j, qq.front().first, qq.front().second );
qq.pop();
bl[ i][ j ] --;
continue;
}
}
}
}
cout << ans;
}
컴파일 시 표준 에러 (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... |