标签:hdoj1754
5 6 1 2 3 4 5 Q 1 5 U 3 6 Q 3 4 Q 4 5 U 2 9 Q 1 5
5 6 5 9HintHuge input,the C function scanf() will work better than cin
Run ID | Submit Time | Judge Status | Pro.ID | Exe.Time | Exe.Memory | Code Len. | Language | Author |
10955721 | 2014-07-07 11:20:55 | Accepted | 1754 | 1109MS | 7156K | 1513 B | G++ | 长木 |
10955685 | 2014-07-07 11:18:05 | Time Limit Exceeded | 1754 | 3000MS | 7144K | 1491 B | G++ | 长木 |
AC:
#include <stdio.h> #define maxn 200002 struct Node{ int left, right; int max; } tree[maxn << 2]; int stu[maxn]; int MAX(int a, int b) { return a > b ? a : b; } void build(int left, int right, int rt) { tree[rt].left = left; tree[rt].right = right; if(left == right){ tree[rt].max = stu[left]; return; } int mid = (left + right) >> 1; build(left, mid, rt << 1); build(mid + 1, right, rt << 1 | 1); tree[rt].max = MAX(tree[rt<<1].max, tree[rt<<1|1].max); } void update(int pos, int val, int rt) { if(tree[rt].left == tree[rt].right){ tree[rt].max = val; return; } int mid = (tree[rt].left + tree[rt].right) >> 1; if(pos <= mid) update(pos, val, rt << 1); else update(pos, val, rt << 1 | 1); tree[rt].max = MAX(tree[rt<<1].max, tree[rt<<1|1].max); } int query(int left, int right, int rt) { if(tree[rt].left == left && right == tree[rt].right){ return tree[rt].max; } int mid = (tree[rt].left + tree[rt].right) >> 1; if(right <= mid) return query(left, right, rt << 1); else if(left > mid) return query(left, right, rt << 1 | 1); return MAX(query(left, mid, rt << 1), query(mid+1, right, rt<<1|1)); } int main() { int N, M, i, m, n; char com[2]; while(scanf("%d%d", &N, &M) == 2){ for(i = 1; i <= N; ++i) scanf("%d", stu + i); build(1, N, 1); while(M--){ scanf("%s%d%d", com, &m, &n); if(com[0] == 'U') update(m, n, 1); else printf("%d\n", query(m, n, 1)); } } return 0; }
TLE::
#include <stdio.h> #define MAX(a, b) a > b ? a : b #define maxn 200002 struct Node{ int lson, rson; int max; } tree[maxn << 2]; int stu[maxn]; void build(int left, int right, int rt) { tree[rt].lson = left; tree[rt].rson = right; if(left == right){ tree[rt].max = stu[left]; return; } int mid = (left + right) >> 1; build(left, mid, rt << 1); build(mid + 1, right, rt << 1 | 1); tree[rt].max = MAX(tree[rt<<1].max, tree[rt<<1|1].max); } void update(int pos, int val, int rt) { if(tree[rt].lson == tree[rt].rson){ tree[rt].max = val; return; } int mid = (tree[rt].lson + tree[rt].rson) >> 1; if(pos <= mid) update(pos, val, rt << 1); else update(pos, val, rt << 1 | 1); tree[rt].max = MAX(tree[rt<<1].max, tree[rt<<1|1].max); } int query(int left, int right, int rt) { if(tree[rt].lson == left && right == tree[rt].rson){ return tree[rt].max; } int mid = (tree[rt].lson + tree[rt].rson) >> 1; if(right <= mid) return query(left, right, rt << 1); else if(left > mid) return query(left, right, rt << 1 | 1); return MAX(query(left, mid, rt << 1), query(mid+1, right, rt<<1|1)); } int main() { int N, M, i, m, n; char com[2]; while(scanf("%d%d", &N, &M) == 2){ for(i = 1; i <= N; ++i) scanf("%d", stu + i); build(1, N, 1); while(M--){ scanf("%s%d%d", com, &m, &n); if(com[0] == 'U') update(m, n, 1); else printf("%d\n", query(m, n, 1)); } } return 0; }
HDOJ1754 I Hate It 【线段树】,布布扣,bubuko.com
标签:hdoj1754
原文地址:http://blog.csdn.net/chang_mu/article/details/37502903