# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
38670 | chonka | 거래 (IZhO13_trading) | C++98 | 316 ms | 9352 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<stdio.h>
using namespace std ;
#define MAXN 300007
#define inf 1000000007
int n , q ;
class Tree {
public :
int tr[ 5 * MAXN ] ;
bool fl[ 5 * MAXN ] ;
void init ( int where , int IL , int IR ) {
tr[ where ] = IL ;
fl[ where ] = false ;
if ( IL == IR ) { return ; }
int mid = ( IL + IR ) / 2 ;
init ( 2 * where , IL , mid ) ;
init ( 2 * where + 1 , mid + 1 , IR ) ;
}
void update ( int where , int IL , int IR , int CURL , int CURR , int val ) {
if ( CURL > CURR ) { return ; }
if ( IR < CURL || CURR < IL ) { return ; }
if ( CURL <= IL && IR <= CURR ) {
tr[ where ] = min ( tr[ where ] , val ) ;
fl[ where ] = true ;
return ;
}
int mid = ( IL + IR ) / 2 ;
update ( 2 * where , IL , mid , CURL , CURR , val ) ;
update ( 2 * where + 1 , mid + 1 , IR , CURL , CURR , val ) ;
}
int query ( int where , int IL , int IR , int pos ) {
if ( pos < IL || IR < pos ) { return ( 2 * inf ) ; }
if ( IL == IR ) {
return ( pos - tr[ where ] ) ;
}
int ret = 0 ;
if ( fl[ where ] == true ) {
ret = max ( ret , pos - tr[ where ] ) ;
}
int mid = ( IL + IR ) / 2 ;
if ( pos <= mid ) {
ret = max ( ret , query ( 2 * where , IL , mid , pos ) ) ;
}
else {
ret = max ( ret , query ( 2 * where + 1 , mid + 1 , IR , pos ) ) ;
}
return ret ;
}
};
Tree w ;
void input ( ) {
scanf ( "%d%d" , &n , &q ) ;
w.init ( 1 , 1 , n ) ;
int i ;
for ( i = 1 ; i <= q ; i ++ ) {
int l , r , x ;
scanf ( "%d%d%d" , &l , &r , &x ) ;
int pos = l - x ;
w.update ( 1 , 1 , n , l , r , pos ) ;
}
}
void solve ( ) {
int i ;
for ( i = 1 ; i <= n ; i ++ ) {
int ret = w.query ( 1 , 1 , n , i ) ;
printf ( "%d" , ret ) ;
if ( i == n ) { printf ( "\n" ) ; }
else { printf ( " " ) ; }
}
}
int main ( ) {
input ( ) ;
solve ( ) ;
return 0 ;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |