| 描述 Description |
|
| |
老管家是一個聰明能乾的人。他為財主工作了整整10年,財主為了讓自已賬目更加清楚。要求管家每天記k次賬,由於管家聰明能幹,因而管家總是讓財主十分滿意。但是由於一些人的挑撥,財主還是對管家產生了懷疑。於是他決定用一種特別的方法來判斷管家的忠誠,他把每次的賬目按1,2,3…編號,然後不定時的問管家問題,問題是這樣的:在a到b號賬中最少的一筆是多少?為了讓管家沒時間作假他總是一次問多個問題。 在詢問過程中賬本的內容可能會被修改 |
| |
|
|
| |
|
|
| |
輸入格式 Input Format |
|
| |
輸入中第一行有兩個數m,n表示有m(m<=100000)筆賬,n表示有n個問題,n<=100000。 接下來每行為3個數字,第一個p為數字1或數字2,第二個數為x,第三個數為y 當p=1 則查詢x,y區間 當p=2 則改變第x個數為y |
| |
|
|
| |
|
|
| |
輸出格式 Output Format |
|
| |
輸出檔案中為每個問題的答案。具體查看範例。 |
| |
|
|
| |
|
|
| |
範例輸入 Sample Input |
|
| |
10 3<br />1 2 3 4 5 6 7 8 9 10<br />1 2 7<br />2 2 0<br />1 1 10 |
| |
|
|
| |
|
|
| |
時間限制 Time Limitation |
|
| |
各個測試點1s |
在前面那道忠誠基礎上加了個修改。
ACcode:
#include <cstdio>#include <cstring>#include <cstdlib>#include <bitset>using std::min;const char fi[] = "tyvj1039.in";const char fo[] = "tyvj1039.out";const int maxN = 100010;const int maxM = 100010;const int MAX = 0x3fffff00;const int MIN = -MAX;struct SegTree {int L, R, lc, rc, Min; };SegTree tree[maxM << 1];int t[maxN];int n, m, tot; void init_file() { freopen(fi, "r", stdin); freopen(fo, "w", stdout); } void Build(int L, int R) { int Now = ++tot; tree[Now].L = L; tree[Now].R = R; if (L == R) {tree[Now].Min = t[L]; return; } int Mid = (L + R) >> 1; if (L < R) { tree[Now].lc = tot + 1; Build(L, Mid); tree[Now].rc = tot + 1; Build(Mid + 1, R); } tree[Now].Min = min(tree[tree[Now].lc].Min, tree[tree[Now].rc].Min); } void Modify(int Now, int p) { if (tree[Now].L == tree[Now].R && tree[Now].L == p) {tree[Now].Min = t[p]; return; }//找到目標直接修改。 int Mid = (tree[Now].L + tree[Now].R) >> 1; if (p <= Mid) Modify(tree[Now].lc, p);//在左子樹則找左子樹。 if (p > Mid) Modify(tree[Now].rc, p);//在右子樹則找右子樹。 tree[Now].Min = min(tree[tree[Now].lc].Min, tree[tree[Now].rc].Min); } int Query(int Now, int L, int R) { if (L <= tree[Now].L && R >= tree[Now].R) return tree[Now].Min; int Mid = (tree[Now].L + tree[Now].R) >> 1; if (R <= Mid) return Query(tree[Now].lc, L, R); if (Mid < L) return Query(tree[Now].rc, L, R); int Lc = Query(tree[Now].lc, L, R), Rc = Query(tree[Now].rc, L, R); return min(Lc, Rc); } void work() { scanf("%d%d", &n, &m); for (int i = 1; i < n + 1; ++i) scanf("%d", t + i); tot = 0; Build(1, n); for (; m; --m) { int O, x, y; scanf("%d%d%d", &O, &x, &y); switch(O) { case 1 : printf("%d\n", Query(1, x, y)); break; case 2 : t[x] = y; Modify(1, x); break; } } } int main(){ init_file(); work(); exit(0);}