标签:-- amp 开始 inpu name namespace for log 整数
3 1 1 2 2 3 3 3 1 1 1 2 1 3 0Sample Output
1 1 1 3 2 1
看了一个大佬的方法,好聪明
#include<stdio.h> #include<iostream> #include<algorithm> #include<string.h> #include<math.h> using namespace std; int main() { int n; int l,r; while(scanf("%d",&n)&&n!=0) { int a[100010]={0}; for(int i=0;i<n;i++) { scanf("%d%d",&l,&r); a[l]++; a[r+1]--; } printf("%d",a[1]); for(int i=2;i<=n;i++) { a[i]+=a[i-1]; printf(" %d",a[i]); } printf("\n"); } return 0; }
标签:-- amp 开始 inpu name namespace for log 整数
原文地址:http://www.cnblogs.com/xzxj/p/7236404.html