이 제출은 이전 버전의 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
#define sqrt sqrtl
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;
freopen ( "sum.in", "r", stdin )
*/
int n, m, a[ 400001 ], x, y;
int an[ 200001 ];
int p[ 400001 ], r[ 400001 ], c[ 400001 ];
int sz[ 400001 ], l[ 400001 ], sf[ 400001 ];
struct Node {
int mx, i;
Node operator + ( Node a ) {
Node c;
if ( mx > a.mx )
c.mx = mx, c.i = i;
else
c = a;
return c;
}
} t[ 400001 ], anss;
vector <int> v[ 400001 ];
set <pair<int, int> > st;
int used[ 400001 ];
bool ok1 = 1, ok2 = 1;
queue <int> q;
bool bfs( int u ) {
st.clear();
st.insert( { 0, u } );
used[ u ] = 1;
sum = a[ u ];
while ( st.size() ) {
u = st.begin()->second;
used[ u ] = 1;
int cost = st.begin()->first;
st.erase( st.begin() );
if ( sum < cost )
return false;
sum += cost;
for ( auto to : v[ u ] ) {
if ( !used[ to ] )
st.insert( { a[ to ], to } );
}
}
return true;
}
void dfs( int u, int pr = 1, int sum = 0 ) {
sz[ u ] += a[ u ];
for ( auto to : v[ u ] ) {
if ( to != pr ) {
dfs( to, u, sum );
sz[ u ] += sz[ to ];
}
}
}
void build( int v, int tl, int tr ) {
if ( tl == tr ) {
t[ v ].mx = a[ tl ];
t[ v ].i = tl;
return;
}
int mid = ( tl + tr ) / 2;
build( v + v, tl, mid );
build( v + v + 1, mid + 1, tr );
t[ v ] = t[ v + v ] + t[ v + v + 1 ];
}
void gett( int v, int tl, int tr, int l, int r ) {
if ( tl > r || tr < l )
return;
if ( tl >= l && tr <= r ) {
anss = anss + t[ v ];
return;
}
int mid = ( tl + tr ) / 2;
gett( v + v, tl, mid, l, r );
gett( v + v + 1, mid + 1, tr ,l ,r );
}
void calc( int num, int l, int r ) {
if ( l > r )
return;
anss.mx = 0;
anss.i = 0;
gett( 1, 1, n, l, r );
if ( p[ r ] - p[ l - 1 ] >= num ) {
an[ anss.i ] = 1;
calc( anss.mx, l, anss.i - 1 );
calc( anss.mx, anss.i + 1, r );
}
}
main () {
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cin >> n >> m;
for ( int i = 1; i <= n; i ++ ) {
cin >> a[ i ];
p[ i ] = p[ i - 1 ] + a[ i ];
c[ i ] = a[ i ];
st.insert( { a[ i ], i } );
if ( i > 1 && a[ i ] > a[ i - 1 ] )
ok1 = 0;
}
for ( int i = 1; i <= m; i ++ ) {
cin >> x >> y;
v[ x ].push_back( y );
v[ y ].push_back( x );
if ( abs( x - y ) != 1 )
ok2 = 0;
}
if ( n <= 2000 ) {
for ( int i = 1; i <= n; i ++ ) {
cout << bfs( i );
for ( int j = 1; j <= n; j ++ )
used[ j ] = 0;
}
}
else if ( ok1 ) {
dfs( 1 );
an[ 1 ] = 1;
q.push( 1 );
while ( q.size() ) {
int u = q.front();
q.pop();
for ( auto to : v[ u ] ) {
if ( sz[ to ] >= a[ u ] && to > u ) {
an[ to ] = 1;
q.push( to );
}
}
}
for ( int i = 1; i <= n; i ++ )
cout << an[ i ];
return 0;
}
else if ( ok2 ) {
calc( 0, 1, n );
for ( int i = 1; i <= n; i ++ )
cout << an[ i ];
return 0;
}
}
컴파일 시 표준 에러 (stderr) 메시지
island.cpp:137:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
137 | main () {
| ^~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |