程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> poj 3067 Japan(線段樹)

poj 3067 Japan(線段樹)

編輯:C++入門知識

poj 3067 Japan(線段樹)


題目鏈接:poj 3067 Japan

題目大意:給定N和M,表示東部和西部城市的數量,然後K條鐵路,每條鐵路連接東西城市,問說會有多少次交點。

解題思路:線段樹維護即可,每條邊按照x小的,y小的排序,然後每次查詢y+1到M的即可。

#include 
#include 
#include 

using namespace std;
const int maxn = 1005;

#define lson(x) ((x)<<1)
#define rson(x) (((x)<<1)|1)
int lc[maxn << 2], rc[maxn << 2], s[maxn << 2];
inline void pushup(int u) {
    s[u] = s[lson(u)] + s[rson(u)];
}

void build (int u, int l, int r) {
    lc[u] = l;
    rc[u] = r;
    s[u] = 0;

    if (l == r)
        return ;
    int mid = (l + r) >> 1;
    build(lson(u), l, mid);
    build(rson(u), mid + 1, r);
    pushup(u);
}

void modify(int u, int x, int w) {
    if (x == lc[u] && rc[u] == x) {
        s[u] += w;
        return;
    }    

    int mid = (lc[u] + rc[u]) >> 1;
    if (x <= mid)
        modify(lson(u), x, w);
    else
        modify(rson(u), x, w);
    pushup(u);
}

int query(int u, int l, int r) {
    if (l > r)
        return 0;

    if (l <= lc[u] && rc[u] <= r)
        return s[u];

    int mid = (lc[u] + rc[u]) >> 1, ret = 0;
    if (l <= mid)
        ret += query(lson(u), l, r);
    if (r > mid)
        ret += query(rson(u), l, r);
    return ret;
}

int N, M, Q;
struct point {
    int x, y;
    friend bool operator < (const point& a, const point& b) {
        if (a.x != b.x)
            return a.x < b.x;
        return a.y < b.y;
    }
}p[maxn * maxn];

int main () {
    int cas;
    scanf("%d", &cas);
    for (int kcas = 1; kcas <= cas; kcas++) {
        scanf("%d%d%d", &N, &M, &Q);
        build(1, 1, M);

        long long ans = 0;
        for (int i = 0; i < Q; i++)
            scanf("%d%d", &p[i].x, &p[i].y);
        sort(p, p + Q);

        for (int i = 0; i < Q; i++) {
            ans += query(1, p[i].y + 1, M);
            modify(1, p[i].y, 1);
        }
        printf("Test case %d: %lld\n", kcas, ans);
    }
    return 0;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved