제출 #497495

#제출 시각아이디문제언어결과실행 시간메모리
497495vinnipuh01Hedgehog Daniyar and Algorithms (IZhO19_sortbooks)C++17
64 / 100
3032 ms235120 KiB
#include <iostream> #include <bits/stdc++.h> #include <cmath> #include <algorithm> #include <vector> #include <deque> #include <set> #include <stack> #include <string> #include <map> #include <queue> 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 ) */ struct Node { vector <int> v; int ans; public : Node operator + ( Node a ) { Node c; c.ans = max( ans, a.ans ); int l, r; l = r = 0; int mx = v.back(); if ( a.v.front() < mx ) { auto it = lower_bound( a.v.begin(), a.v.end(), mx ); it = --it; c.ans = max( c.ans, *it + mx ); } while ( l < v.size() && r < a.v.size() ) { if ( v[ l ] < a.v[ r ] ) { c.v.push_back( v[ l ] ); l ++; } else { c.v.push_back( a.v[ r ] ); r ++; } } while ( l < v.size() ) { c.v.push_back( v[ l ] ); l ++; } while ( r < a.v.size() ) { c.v.push_back( a.v[ r ] ); r ++; } return c; } } t[ 3000001 ]; struct Node1 { int ans, mx; } an; int n, m, a[ 1000001 ]; void build( int v, int tl, int tr ) { if ( tl == tr ) { t[ v ].v.push_back( a[ tl ] ); t[ v ].ans = 0; 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 ) { an.ans = max( an.ans, t[ v ].ans ); if ( an.mx > t[ v ].v.front() ) { auto it = lower_bound( t[ v ].v.begin(), t[ v ].v.end(), an.mx ); it = --it; an.ans = max( an.ans, an.mx + *it ); } an.mx = max( an.mx, t[ v ].v.back() ); return; } int mid = ( tl + tr ) / 2; gett( v + v, tl, mid, l, r ); gett( v + v + 1, mid + 1, tr, l, 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 ]; } int l, r, x; build( 1, 1, n ); while ( m -- ) { cin >> l >> r >> x; num = 0; an.mx = 0; an.ans = 0; gett( 1, 1, n, l, r ); cout << ( x >= an.ans ) << "\n"; } } /* 9 1 10 6 7 10 1 3 7 3 7 2 3 1 3 1 7 1 9 1 3 8 */

컴파일 시 표준 에러 (stderr) 메시지

sortbooks.cpp: In member function 'Node Node::operator+(Node)':
sortbooks.cpp:58:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   58 |    while ( l < v.size() && r < a.v.size() ) {
      |            ~~^~~~~~~~~~
sortbooks.cpp:58:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   58 |    while ( l < v.size() && r < a.v.size() ) {
      |                            ~~^~~~~~~~~~~~
sortbooks.cpp:68:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   68 |    while ( l < v.size() ) {
      |            ~~^~~~~~~~~~
sortbooks.cpp:72:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   72 |    while ( r < a.v.size() ) {
      |            ~~^~~~~~~~~~~~
sortbooks.cpp: At global scope:
sortbooks.cpp:116:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
  116 | main () {
      | ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...