1. 程式人生 > >Color the ball HDU - 1556 (非線段樹做法)

Color the ball HDU - 1556 (非線段樹做法)

不同 clu n) color hdu style str () span

題意:在1到n的氣球中,在不同的區域中塗顏色,問每個氣球塗幾次。

#include<cstdio>
int num[100010];
int main()
{
int n, x, y;;
while (scanf("%d", &n), n)
{
for (int i = 0; i < n; i++)
{
scanf("%d%d", &x, &y);
num[x] += 1; num[y + 1] -= 1;
}
for (int i = 2; i <= n + 1; i++)
num[i] += num[i - 1];
printf("%d", num[1]); num[1] = 0;


for (int i = 2; i <= n; i++)
{
printf(" %d", num[i]); num[i] = 0;
}
printf("\n");
}

}

Color the ball HDU - 1556 (非線段樹做法)