Submission #78755


ソースコード

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#if !__INCLUDE_LEVEL__
#include __FILE__
//セグ木を作ろう!
//make() 型、更新関数、要素数、初期値
//rmq() 検索クエリ
//
//
//
//
//
//
//
//
template<typename T>
class segtree{
vector<T>seg;
int sz;
T x;
T (*f)(T,T);
public:segtree(int n,T (*p)(T,T),T y = 0){
sz = 1;
while(sz < n)sz <<= 1;
x = y;
f = p;
seg.resize(2*sz-1,x);
if(f(y,y) != y){
for(int i = sz-2;i >= 0;i--){
seg[i] = f(seg[2*i+1],seg[2*i+2]);
}
}
}
public:T rmq(int a,int b,int k,int l,int r){
if(a >= r||b <= l)return x;
if(a <= l&&r <= b)return(seg[k]);
return f(rmq(a,b,2*k+1,l,(l+r)>>1),
rmq(a,b,2*k+2,(l+r)>>1,r));
}
public:T rmq(int a,int b){
return rmq(a,b,0,0,sz);
}
public:void update(int k,T y){
k += sz-1;
seg[k] = y;
while(k > 0){
k = (k-1)>>1;
seg[k] = f(seg[2*k+1],seg[2*k+2]);
}
}
};
main(){
start();
int n;
cin >>n;
segtree<int> tree(n,[](int x,int y){return min(x,y);},INF);//セグ木の作成
for(int i = 0;i < n;i++){
int x;
cin >>x;
tree.update(i,x);//値の更新(i番目をxに設定)
}
queue<int>ans;
while(1){
string s;
int x,y;
cin >>s;
if(s == "min"){//min値の出力
cin >>x>>y;
ans.push(tree.rmq(x,y+1));//min値の出力はxは含む、yは含まず。
}else if(s == "update"){//値の更新
cin >>x>>y;
tree.update(x,y);
}else{
break;
}
}
queue<int>debug = ans;
while(!debug.empty()){
cout <<debug.front()<<endl;
debug.pop();
}
}
#else
#include<bits/stdc++.h>
#define endl "\n"
#define INF LONG_LONG_MAX
#define rpqueue(i) priority_queue<i>
#define pqueue(i) priority_queue<i,vector<i>,greater<i>>
#define yn(i) if(i)cout<<"Yes\n";else cout<<"No\n"
#define chmax(a,b) a=max(a,b)
#define chmin(a,b) a=min(a,b)
#define all(i) i.begin(),i.end()
#define loop(i,s,e) for(int i = s;i < e;i++)
#define rloop(i,s,e) for(int i = s;i >= e;i--)
#define int long long
#define vec vector
using namespace std;
void start(){
cin.tie(nullptr);ios::sync_with_stdio(false);
cout << std::fixed << std::setprecision(10);
}
long long modinv(long long a,long long m){
long long b = m,u = 1,v = 0;
while(b){
long long t = a / b;
a -= t * b;swap(a,b);
u -= t * v;swap(u,v);
}
u %= m;
if(u < 0)u += m;
return u;
}
bool isPrime(long long x) {
for (int i = 2; i * i <= x; i++) {
if (x % i == 0) return false;
}
return true;
}
#endif

ステータス

項目 データ
問題 0459 - セグメントツリー練習
ユーザー名 ei2332
投稿日時 2024-05-10 22:26:13
言語 C++17
状態 Accepted
得点 10
ソースコード長 2629 Byte
最大実行時間 33 ms
最大メモリ使用量 2744 KB

セット

セット 得点 Cases
1 ALL 10 / 10 *

テストケース

ファイル名 状態 実行時間 メモリ使用量 #
Input01 AC 33 ms 604 KB
1
Input02 AC 21 ms 556 KB
1
Input03 AC 25 ms 508 KB
1
Input04 AC 27 ms 460 KB
1
Input05 AC 19 ms 528 KB
1
Input06 AC 21 ms 600 KB
1
Input07 AC 24 ms 544 KB
1
Input08 AC 16 ms 608 KB
1
Input09 AC 21 ms 780 KB
1
Input10 AC 32 ms 2744 KB
1