結果
問題 | No.318 学学学学学 |
ユーザー | monnu |
提出日時 | 2020-04-06 11:27:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 87 ms / 2,000 ms |
コード長 | 1,337 bytes |
コンパイル時間 | 1,625 ms |
コンパイル使用メモリ | 175,564 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-05 23:14:21 |
合計ジャッジ時間 | 5,570 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
6,812 KB |
testcase_01 | AC | 16 ms
6,940 KB |
testcase_02 | AC | 18 ms
6,940 KB |
testcase_03 | AC | 13 ms
6,944 KB |
testcase_04 | AC | 16 ms
6,940 KB |
testcase_05 | AC | 86 ms
6,944 KB |
testcase_06 | AC | 87 ms
6,940 KB |
testcase_07 | AC | 79 ms
6,944 KB |
testcase_08 | AC | 74 ms
6,944 KB |
testcase_09 | AC | 70 ms
6,940 KB |
testcase_10 | AC | 67 ms
6,944 KB |
testcase_11 | AC | 86 ms
6,944 KB |
testcase_12 | AC | 76 ms
6,940 KB |
testcase_13 | AC | 71 ms
6,944 KB |
testcase_14 | AC | 70 ms
6,940 KB |
testcase_15 | AC | 67 ms
6,944 KB |
testcase_16 | AC | 61 ms
6,944 KB |
testcase_17 | AC | 67 ms
6,940 KB |
testcase_18 | AC | 56 ms
6,940 KB |
testcase_19 | AC | 67 ms
6,940 KB |
testcase_20 | AC | 45 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,944 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 1 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; #define MOD 998244353 #define MAX 2100000 #define INF 1001000000 using Graph=vector<vector<int>>; void update(vector<int> &tree,int x,int a,int b,int i,int left,int right){ if(b<=left||right<=a){ return; } if(a<=left&&right<=b){ tree.at(i)=x; return; } if(tree.at(i)!=-1){ tree.at(2*i+1)=tree.at(i); tree.at(2*i+2)=tree.at(i); tree.at(i)=-1; } update(tree,x,a,b,2*i+1,left,(left+right)/2); update(tree,x,a,b,2*i+2,(left+right)/2,right); } int main(){ int N; cin>>N; vector<pair<int,int>> a(N); for(int i=0;i<N;i++){ cin>>a.at(i).first; a.at(i).second=i; } int n=1; while(n<N){ n<<=1; } vector<int> tree(2*n-1,-1); for(int i=0;i<N;i++){ tree.at(n-1+i)=a.at(i).first; } sort(a.begin(),a.end()); int left=0,right=0; while(left<N){ while(a.at(left).first==a.at(right).first){ right++; if(right==N){ break; } } int l=a.at(left).second; int r=a.at(right-1).second+1; int x=a.at(left).first; update(tree,x,l,r,0,0,n); left=right; } for(int i=0;i<n-1;i++){ if(tree.at(i)!=-1){ tree.at(2*i+1)=tree.at(i); tree.at(2*i+2)=tree.at(i); } } for(int i=0;i<N;i++){ cout<<tree.at(n-1+i)<<" "; } cout<<endl; }