結果

問題 No.1675 Strange Minimum Query
ユーザー monnumonnu
提出日時 2021-09-16 20:45:33
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 1,380 bytes
コンパイル時間 1,486 ms
コンパイル使用メモリ 170,520 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-06-29 17:12:46
合計ジャッジ時間 13,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 201 ms
5,760 KB
testcase_04 AC 175 ms
6,912 KB
testcase_05 AC 17 ms
5,376 KB
testcase_06 AC 239 ms
6,016 KB
testcase_07 AC 252 ms
7,680 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 114 ms
8,192 KB
testcase_11 AC 22 ms
7,552 KB
testcase_12 AC 124 ms
8,192 KB
testcase_13 AC 236 ms
9,728 KB
testcase_14 AC 292 ms
9,728 KB
testcase_15 AC 249 ms
9,856 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 45 ms
5,376 KB
testcase_18 AC 68 ms
5,376 KB
testcase_19 AC 81 ms
7,808 KB
testcase_20 AC 217 ms
8,832 KB
testcase_21 AC 183 ms
8,576 KB
testcase_22 AC 243 ms
8,960 KB
testcase_23 AC 209 ms
6,016 KB
testcase_24 AC 175 ms
6,656 KB
testcase_25 AC 133 ms
5,376 KB
testcase_26 AC 60 ms
5,632 KB
testcase_27 AC 163 ms
8,320 KB
testcase_28 AC 80 ms
7,808 KB
testcase_29 AC 48 ms
7,552 KB
testcase_30 AC 57 ms
5,632 KB
testcase_31 AC 273 ms
7,296 KB
testcase_32 AC 339 ms
9,728 KB
testcase_33 AC 327 ms
9,728 KB
testcase_34 AC 339 ms
9,728 KB
testcase_35 AC 318 ms
9,728 KB
testcase_36 AC 315 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using Graph=vector<vector<int>>;
#define INF 1000000000

int n=1;

vector<int> tree1;
void update(int a,int b,int x,int i,int left,int right){
  if(a<=left&&right<=b){
    tree1[i]=max(tree1[i],x);
    return;
  }
  if(right<=a||b<=left){
    return;
  }
  update(a,b,x,2*i+1,left,(left+right)/2);
  update(a,b,x,2*i+2,(left+right)/2,right);
}

vector<int> tree2;
int solve(int a,int b,int i,int left,int right){
  if(a<=left&&right<=b){
    return tree2[i];
  }
  if(right<=a||b<=left){
    return INF;
  }
  int x=solve(a,b,2*i+1,left,(left+right)/2);
  int y=solve(a,b,2*i+2,(left+right)/2,right);
  return min(x,y);
}

int main(){
  int N,Q;
  cin>>N>>Q;
  while(n<N){
    n<<=1;
  }
  vector<int> l(Q),r(Q),B(Q);
  for(int i=0;i<Q;i++){
    cin>>l[i]>>r[i]>>B[i];
    l[i]--;
  }

  tree1.assign(2*n-1,1);
  tree2.assign(2*n-1,INF);

  for(int i=0;i<Q;i++){
    update(l[i],r[i],B[i],0,0,n);
  }
  for(int i=1;i<2*n-1;i++){
    tree1[i]=max(tree1[i],tree1[(i-1)/2]);
  }
  for(int i=0;i<N;i++){
    tree2[n-1+i]=tree1[n-1+i];
  }
  for(int i=n-2;i>=0;i--){
    tree2[i]=min(tree2[2*i+1],tree2[2*i+2]);
  }

  for(int i=0;i<Q;i++){
    if(B[i]!=solve(l[i],r[i],0,0,n)){
      cout<<-1<<'\n';
      return 0;
    }
  }

  for(int i=0;i<N-1;i++){
    cout<<tree1[n-1+i]<<' ';
  }
  cout<<tree1[n-1+N-1]<<'\n';
}
0