結果
| 問題 |
No.3198 Monotonic Query
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-07-11 22:31:31 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 58 ms / 3,000 ms |
| コード長 | 1,140 bytes |
| コンパイル時間 | 3,234 ms |
| コンパイル使用メモリ | 276,976 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2025-07-12 10:55:25 |
| 合計ジャッジ時間 | 6,023 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (ll i = s; i < (ll)(t); i++)
#define rrep(i, s, t) for(ll i = (ll)(t) - 1; i >= (ll)(s); i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
#define TT template<typename T>
TT using vec = vector<T>;
template<class T1, class T2> bool chmin(T1 &x, T2 y) { return x > y ? (x = y, true) : false; }
template<class T1, class T2> bool chmax(T1 &x, T2 y) { return x < y ? (x = y, true) : false; }
struct io_setup {
io_setup() {
ios::sync_with_stdio(false);
std::cin.tie(nullptr);
cout << fixed << setprecision(15);
}
} io_setup;
#include<atcoder/segtree>
int op(int l,int r){return max(l,r);}
int e(){return 0;}
void solve(){
int Q;
cin>>Q;
atcoder::segtree<int,op,e>seg(Q);
int now=0;
while(Q--){
int t;
cin>>t;
if(t==1){
int x;
cin>>x;
seg.set(now,x);
now++;
}else{
int k;
cin>>k;
cout<<seg.prod(now-k,now)<<"\n";
}
}
}
int main() {
solve();
}