The 2014 ACMICPC Asia Regional Beijing Online
【C】-_-///不懂
【D】数论,概率密度
【H】区间维护+线段树+DFS序(可以看看)
【I】BFS地图题(当时好多人坑在摄像头上面了,现在有一点点思路,分层图,一会看看)
【J】-_-/////
貌似除了这两题巨坑的,剩下的都有能出的可能性
Always Cook Mushroom
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
2 0 0 3 3 5 8 2 4 7 1 2 3 1 2 3 3 5 8 2 4 7 1 2 3
【Sample Output】
Case #1: 1842 1708 86 Case #2: 2901 2688 200
【题意】 给出一张最大1000*1000的图,给出一些询问,每次询问给出一个斜率和x,要求三角内的所有点的和。
【分析】
题目意思比较裸,直观地想到这道题目的难度肯定不是在理解上,应该是数据比较大太裸的算法不可能卡过。
果然试了各种,唯一想到的树状数组也加上去了,还是一直TLE没能在比赛过程中出解。
赛后整理终于明白了,这道题目的关键在于如何把一张二维的图转化为一维来解决,本题给我的启发是:累加的题目如果要避免反复加引起的重复的话,树状数组是必须的,时间非常优秀,然而树状数组毕竟是一维的,必须想到办法解决二维压成一维之后的后效性等等问题才能发挥出最大的效果。
最后的算法:
二维转一维:将最大1000*1000个点按照斜率排序。对于每次的询问也是按照斜率排序。
想象有一根轴,从x轴的0°角开始逆时针扫整个平面,扫到的点按照x坐标加入树状数组,直到扫到与一条询问线重合,则对该次询问求sum(x)。这样就能避免了重复操作。把结果按照原始顺序重新输出即可。
1 /* *********************************************** 2 MYID : Chen Fan 3 LANG : G++ 4 PROG : HDU5032 5 ************************************************ */ 6 7 #include <iostream> 8 #include <cstdio> 9 #include <cstring> 10 #include <algorithm> 11 12 using namespace std; 13 14 long long c[1010]; 15 int outp[100010]; 16 long long ou[100010]; 17 18 typedef struct poin 19 { 20 int x,y; 21 long long v; 22 double ang; 23 } point; 24 25 point poi[1000010]; 26 int totp; 27 28 typedef struct nod 29 { 30 int a,b,x,src; 31 double ang; 32 } node; 33 34 node lis[100010]; 35 36 bool op1(point a,point b) 37 { 38 if (a.ang==b.ang) return a.x<b.x; 39 else return a.ang<b.ang; 40 } 41 42 bool op2(node a,node b) 43 { 44 if (a.ang==b.ang) return a.a<b.a; 45 else return a.ang<b.ang; 46 } 47 48 int lowbit(int s) 49 { 50 return s&-s; 51 } 52 53 void update(int s,long long x) 54 { 55 while (s<=1000) 56 { 57 c[s]+=x; 58 s+=lowbit(s); 59 } 60 } 61 62 long long sum(int s) 63 { 64 long long t=0; 65 while (s>0) 66 { 67 t+=c[s]; 68 s-=lowbit(s); 69 } 70 return t; 71 } 72 73 int main() 74 { 75 freopen("test.txt","r",stdin); 76 77 int t; 78 79 totp=0; 80 for (int i=1;i<=1000;i++) 81 for (int j=1;j<=1000;j++) 82 { 83 totp++; 84 poi[totp].x=i; 85 poi[totp].y=j; 86 poi[totp].ang=(double)j/i; 87 } 88 sort(&poi[1],&poi[1+totp],op1); 89 90 scanf("%d",&t); 91 for (int tt=1;tt<=t;tt++) 92 { 93 int A,B; 94 scanf("%d%d",&A,&B); 95 memset(c,0,sizeof(c)); 96 97 for (int i=1;i<=totp;i++) poi[i].v=(poi[i].x+A)*(poi[i].y+B); 98 99 printf("Case #%d:\n",tt); 100 101 int m; 102 scanf("%d",&m); 103 for (int i=1;i<=m;i++) 104 { 105 scanf("%d%d%d",&lis[i].a,&lis[i].b,&lis[i].x); 106 lis[i].ang=(double)lis[i].b/lis[i].a; 107 lis[i].src=i; 108 } 109 sort(&lis[1],&lis[1+m],op2); 110 for (int i=1;i<=m;i++) outp[lis[i].src]=i; 111 112 for (int i=1,j=1;i<=m;i++) 113 { 114 while (j<=totp&&lis[i].ang-poi[j].ang>=0) 115 { 116 update(poi[j].x,poi[j].v); 117 j++; 118 } 119 ou[i]=sum(lis[i].x); 120 } 121 122 for (int i=1;i<=m;i++) printf("%lld\n",ou[outp[i]]); 123 } 124 125 return 0; 126 }
【启发】
既然已经想到了树状数组,就应该多想想树状数组的性质,本题是利用了极角的特性二维化一维,思维上非常地巧妙。
树状数组这一块另外再补补,尤其是多维的情况
Building
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)
Special Judge
3 3 1 2 2 1 5 1 1 4 3 1 3 2 2 5 1 1 4 3 1 4 2 3 5 1 1 4
【Sample Output】
Case #1: 101.3099324740 Case #2: 90.0000000000 Case #3: 78.6900675260
【说明】
不太擅长几何题,好在队友给力能解决,日后慢慢看......0.0,嘿嘿
http://www.cnblogs.com/AOQNRMGYXLMV/p/3987173.html
Explosion
Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) Total
In the first line of each test case, there is an integer N (N<=1000) indicating the number of rooms.
The following N lines corresponde to the rooms from 1 to N. Each line begins with an integer k (0<=k<=N) indicating the number of keys behind the door. Then k integers follow corresponding to the rooms these keys can open.
2 3 1 2 1 3 1 1 3 0 0 0
【Sample Output】
Case #1: 1.00000 Case #2: 3.00000
【题意】
1 /* *********************************************** 2 MYID : Chen Fan 3 LANG : G++ 4 PROG : HDU5036 5 ************************************************ */ 6 7 #include <iostream> 8 #include <cstdio> 9 #include <cstring> 10 #include <algorithm> 11 #include <bitset> 12 13 using namespace std; 14 15 bitset<1010> a[1010]; 16 17 int main() 18 { 19 int t; 20 scanf("%d",&t); 21 for (int tt=1;tt<=t;tt++) 22 { 23 int n; 24 scanf("%d",&n); 25 for (int i=1;i<=n;i++) 26 { 27 a[i].reset(); 28 a[i][i]=true; 29 } 30 31 for (int i=1;i<=n;i++) 32 { 33 int m; 34 scanf("%d",&m); 35 for (int j=1;j<=m;j++) 36 { 37 int k; 38 scanf("%d",&k); 39 a[i][k]=true; 40 } 41 } 42 43 for (int i=1;i<=n;i++) 44 for (int j=1;j<=n;j++) 45 if (a[j][i]) a[j]|=a[i]; 46 47 double ans=0; 48 for (int i=1;i<=n;i++) 49 { 50 int tot=0; 51 for (int j=1;j<=n;j++) 52 if (a[j][i]) tot++; 53 ans+=1.0/tot; 54 } 55 56 printf("Case #%d: %.5lf\n",tt,ans); 57 } 58 59 return 0; 60 }
有关bitset的用法,详见另外整理的一篇博文:
http://www.cnblogs.com/jcf94/p/3997908.html
Frog
Time Limit: 3000/1500 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)
The river could be considered as an axis.Matt is standing on the left bank now (at position 0). He wants to cross the river, reach the right bank (at position M). But Matt could only jump for at most L units, for example from 0 to L.
As the God of Nature, you must save this poor frog.There are N rocks lying in the river initially. The size of the rock is negligible. So it can be indicated by a point in the axis. Matt can jump to or from a rock as well as the bank.
You don't want to make the things that easy. So you will put some new rocks into the river such that Matt could jump over the river in maximal steps.And you don't care the number of rocks you add since you are the God.
Note that Matt is so clever that he always choose the optimal way after you put down all the rocks.
For each test case, the first line contains N, M, L (0<=N<=2*10^5,1<=M<=10^9, 1<=L<=10^9).
And in the following N lines, each line contains one integer within (0, M) indicating the position of rock.
2 1 10 5 5 2 10 3 3 6
【Sample Output】
Case #1: 2 Case #2: 4
【题意】
【分析】
Grade
Time Limit: 3000/1500 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)
The first line of each test cases contains one integers N (1<=N<=10^6),denoting the number of the mushroom.
The second line contains N integers, denoting the weight of each mushroom. The weight is greater than 0, and less than 200.
The first line contains "Case #x:", where x is the case number (starting from 1)
The second line contains the mode of the grade of the given mushrooms. If there exists multiple modes, output them in ascending order. If there exists no mode, output “Bad Mushroom”.
3 6 100 100 100 99 98 101 6 100 100 100 99 99 101 6 100 100 98 99 99 97
【Sample Output】
Case #1: 10000 Case #2: Bad Mushroom Case #3: 9999 10000
【分析】
排序+判断,有些细节上的小问题要多注意一下