2014年亚洲区域赛北京赛区现场赛A,D,H,I,K题解(hdu5112,5115,5119,5220,5122)

转载请注明出处: http://www.cnblogs.com/fraud/           ——by fraud

下午在HDU上打了一下今年北京区域赛的重现,过了5题,看来单挑只能拿拿铜牌,呜呜。

先将这五题的题解放上来,剩余题目等搞出来再补上

A题

A Curious Matt

Time Limit: 2000/2000 MS (Java/Others)    Memory Limit: 512000/512000 K (Java/Others)


Problem Description
There is a curious man called Matt.

One day, Matt's best friend Ted is wandering on the non-negative half of the number line. Matt finds it interesting to know the maximal speed Ted may reach. In order to do so, Matt takes records of Ted’s position. Now Matt has a great deal of records. Please help him to find out the maximal speed Ted may reach, assuming Ted moves with a constant speed between two consecutive records.
 
Input
The first line contains only one integer T, which indicates the number of test cases.

For each test case, the first line contains an integer N (2 ≤ N ≤ 10000),indicating the number of records.

Each of the following N lines contains two integers ti and xi (0 ≤ ti, xi ≤ 106), indicating the time when this record is taken and Ted’s corresponding position. Note that records may be unsorted by time. It’s guaranteed that all ti would be distinct.
 
Output
For each test case, output a single line “Case #x: y”, where x is the case number (starting from 1), and y is the maximal speed Ted may reach. The result should be rounded to two decimal places.
 
Sample Input
2
3
2 2
1 1
3 4
3
0 3
1 5
2 0
Sample Output
Case #1: 2.00
Case #2: 5.00
Hint
In the first sample, Ted moves from 2 to 4 in 1 time unit. The speed 2/1 is maximal. In the second sample, Ted moves from 5 to 0 in 1 time unit. The speed 5/1 is maximal.

题目要求求出最大的速度

分析:以时间为key值,排序,然后遍历一遍

 1 #include <iostream>
 2 #include <cstring>
 3 #include <iomanip>
 4 #include <cmath>
 5 #include <algorithm>
 6 using namespace std;
 7 int a[10010];
 8 int b[10010];
 9 double c[10010];
10 int id[10010];
11 bool cmp(int x,int y)
12 {
13     return a[x]<=a[y];
14 }
15 int main()
16 {
17     ios::sync_with_stdio(false);
18     int t;
19     int n;
20     int cas=1;
21     cin>>t;
22     while(t--)
23     {
24         cin>>n;
25         a[0]=0,b[0]=0;
26         for(int i=0;i<n;i++)
27         {
28             cin>>a[i]>>b[i];
29             id[i]=i;
30         }
31         sort(id,id+n,cmp);
32         double maxx=0;
33         for(int i=1;i<n;i++)
34         {
35             maxx=max(maxx,fabs((b[id[i]]-b[id[i-1]])*1.0/((a[id[i]]-a[id[i-1]])*1.0)));
36         }
37         cout<<"Case #"<<cas++<<": ";
38         cout<<fixed<<setprecision(2)<<maxx<<endl;
39     }
40     return 0;
41 }
代码君

D题

Dire Wolf

Time Limit: 5000/5000 MS (Java/Others)    Memory Limit: 512000/512000 K (Java/Others)


Problem Description
Dire wolves, also known as Dark wolves, are extraordinarily large and powerful wolves. Many, if not all, Dire Wolves appear to originate from Draenor.
Dire wolves look like normal wolves, but these creatures are of nearly twice the size. These powerful beasts, 8 - 9 feet long and weighing 600 - 800 pounds, are the most well-known orc mounts. As tall as a man, these great wolves have long tusked jaws that look like they could snap an iron bar. They have burning red eyes. Dire wolves are mottled gray or black in color. Dire wolves thrive in the northern regions of Kalimdor and in Mulgore.
Dire wolves are efficient pack hunters that kill anything they catch. They prefer to attack in packs, surrounding and flanking a foe when they can.
— Wowpedia, Your wiki guide to the World of Warcra�

Matt, an adventurer from the Eastern Kingdoms, meets a pack of dire wolves. There are N wolves standing in a row (numbered with 1 to N from left to right). Matt has to defeat all of them to survive.

Once Matt defeats a dire wolf, he will take some damage which is equal to the wolf’s current attack. As gregarious beasts, each dire wolf i can increase its adjacent wolves’ attack by bi. Thus, each dire wolf i’s current attack consists of two parts, its basic attack ai and the extra attack provided by the current adjacent wolves. The increase of attack is temporary. Once a wolf is defeated, its adjacent wolves will no longer get extra attack from it. However, these two wolves (if exist) will become adjacent to each other now.

For example, suppose there are 3 dire wolves standing in a row, whose basic attacks ai are (3, 5, 7), respectively. The extra attacks bi they can provide are (8, 2, 0). Thus, the current attacks of them are (5, 13, 9). If Matt defeats the second wolf first, he will get 13 points of damage and the alive wolves’ current attacks become (3, 15).

As an alert and resourceful adventurer, Matt can decide the order of the dire wolves he defeats. Therefore, he wants to know the least damage he has to take to defeat all the wolves.
 
Input
The first line contains only one integer T , which indicates the number of test cases. For each test case, the first line contains only one integer N (2 ≤ N ≤ 200).

The second line contains N integers ai (0 ≤ ai ≤ 100000), denoting the basic attack of each dire wolf.

The third line contains N integers bi (0 ≤ bi ≤ 50000), denoting the extra attack each dire wolf can provide.
 
Output
For each test case, output a single line “Case #x: y”, where x is the case number (starting from 1), y is the least damage Matt needs to take.
 
Sample Input
2
3
3 5 7
8 2 0
10
1 3 5 7 9 2 4 6 8 10
9 4 1 2 1 2 1 4 5 1
 
Sample Output
Case #1: 17
Case #2: 74
Hint
In the first sample, Matt defeats the dire wolves from left to right. He takes 5 + 5 + 7 = 17 points of damage which is the least damage he has to take.
 题意:有n头狼排成一排,每只狼都对相邻的狼的攻击力有加成作用,每杀死一只狼所受到的伤害为当前狼的攻击力(算上加成的部分),被杀死之后的狼对相邻的狼的攻击力的加成会被取消,同时,原先与被杀死的狼相邻的两头狼会变成相邻的狼。要求使得受到的伤害值最小,求出最小值。
分析:区间dp水题
dp[i][j]表示从第i头狼到第j头狼全部被杀死所受到的最小伤害。a[i]表示第i头狼的初始攻击力,b[i]表示第i头狼对相邻狼的加成值。
dp[i][j]=min(dp[i][k-1]+a[k]+dp[k+1][j])+b[i-1]+b[j+1]; (i<k<j&&j>i)
dp[i][j]=a[i]+b[i-1]+b[j+1];  (i=j)
 1 #include <iostream>
 2 #include <cstring>
 3 #include <cstdio>
 4 using namespace std;
 5 int a[310],b[310];
 6 int dp[310][310];
 7 int main()
 8 {
 9     ios::sync_with_stdio(false);
10     int t,n;
11     cin>>t;
12     int cas=1;
13     while(t--)
14     {
15         cin>>n;
16         for(int i=1;i<=n;i++)cin>>a[i];
17         for(int i=1;i<=n;i++)cin>>b[i];
18         b[0]=b[n+1]=0;
19         for(int p=0;p<n;p++)
20         {
21             for(int i=1;i<=n;i++)
22             {
23                 int j=i+p;
24                 if(i==j)
25                 {
26                     dp[i][j]=a[i]+b[i-1]+b[i+1];
27                     continue;
28                 }
29                 if(j>n)break;
30                 dp[i][j]=min(a[i]+dp[i+1][j],a[j]+dp[i][j-1]);
31                 int temp=0;
32                 for(int k=i+1;k<j;k++)
33                 {
34                     dp[i][j]=min(dp[i][j],dp[i][k-1]+a[k]+dp[k+1][j]);
35                 }
36                 dp[i][j]+=b[i-1]+b[j+1];
37             }
38         }
39         cout<<"Case #"<<cas++<<": ";
40         cout<<dp[1][n]<<endl;
41     }
42     return 0;
43 }
代码君

H题

Happy Matt Friends

Time Limit: 6000/6000 MS (Java/Others)    Memory Limit: 510000/510000 K (Java/Others)


Problem Description
Matt has N friends. They are playing a game together.

Each of Matt’s friends has a magic number. In the game, Matt selects some (could be zero) of his friends. If the xor (exclusive-or) sum of the selected friends’magic numbers is no less than M , Matt wins.

Matt wants to know the number of ways to win.
 
Input
The first line contains only one integer T , which indicates the number of test cases.

For each test case, the first line contains two integers N, M (1 ≤ N ≤ 40, 0 ≤ M ≤ 106).

In the second line, there are N integers ki (0 ≤ ki ≤ 106), indicating the i-th friend’s magic number.
 
Output
For each test case, output a single line “Case #x: y”, where x is the case number (starting from 1) and y indicates the number of ways where Matt can win.
 
Sample Input
2
3 2
1 2 3
3 3
1 2 3
 
Sample Output
Case #1: 4
Case #2: 2
Hint
In the first sample, Matt can win by selecting: friend with number 1 and friend with number 2. The xor sum is 3. friend with number 1 and friend with number 3. The xor sum is 2. friend with number 2. The xor sum is 2. friend with number 3. The xor sum is 3. Hence, the answer is 4.
题意:求从n个数中挑出一些数,并且这些数的异或和不小与M的方案数,挑出的数的数目可为0.
分析:dp
dp[i][j]表示从前i个数中挑出一些数,并且这些数的异或和为j的方案数
鉴于直接数组开不下,用一下滚动数组即可
 1 #include <iostream>
 2 #include <cstring>
 3 using namespace std;
 4 int a[110];
 5 long long dp[2][(1<<20)+10];
 6 int main()
 7 {
 8     ios::sync_with_stdio(false);
 9     int t;
10     cin>>t;
11     int cas=1;
12     while(t--)
13     {
14         int n,m;
15         cin>>n>>m;
16         memset(dp,0,sizeof(dp));
17         for(int i=0;i<n;i++)cin>>a[i];
18         cout<<"Case #"<<cas++<<": ";
19         dp[1][0]=1;
20         int k;
21         for(int i=0;i<n;i++)
22         {
23             for(int j=0;j<(1<<20);j++)dp[i&1][j]=dp[!(i&1)][j];
24             for(int j=0;j<(1<<20);j++)
25             {
26                 k=a[i]^j;
27                 dp[i&1][k]+=dp[!(i&1)][j];
28             }
29         }
30         long long ans=0;
31         for(int i=m;i<(1<<20);i++)ans+=dp[!(n&1)][i];
32         cout<<ans<<endl;
33     }
34     return 0;
35 }
代码君

I题

Intersection

Time Limit: 4000/4000 MS (Java/Others)    Memory Limit: 512000/512000 K (Java/Others)


Problem Description
Matt is a big fan of logo design. Recently he falls in love with logo made up by rings. The following figures are some famous examples you may know.


A ring is a 2-D figure bounded by two circles sharing the common center. The radius for these circles are denoted by r and R (r < R). For more details, refer to the gray part in the illustration below.


Matt just designed a new logo consisting of two rings with the same size in the 2-D plane. For his interests, Matt would like to know the area of the intersection of these two rings.
 


Input
The first line contains only one integer T (T ≤ 105), which indicates the number of test cases. For each test case, the first line contains two integers r, R (0 ≤ r < R ≤ 10).

Each of the following two lines contains two integers xi, yi (0 ≤ xi, yi ≤ 20) indicating the coordinates of the center of each ring.
 


Output
For each test case, output a single line “Case #x: y”, where x is the case number (starting from 1) and y is the area of intersection rounded to 6 decimal places.
 


Sample Input
2
2 3
0 0
0 0
2 3
0 0
5 0
 


Sample Output
Case #1: 15.707963
Case #2: 2.250778
 
题意:给出两个全等圆环,求两圆环的面积的交
分析:根据容斥,直接推出公式,转化成求两圆面积交的问题
ans=大圆的面积交+小圆的面积交-大圆1与小圆2的面积交-大圆2与小圆1的面积交
 1 #include <iostream>
 2 #include <cstring>
 3 #include <iomanip>
 4 #include <cmath>
 5 #include <algorithm>
 6 #include <cstdio>
 7 using namespace std;
 8 
 9 #define PI acos(-1.0)
10 double area(double x1,double y1,double r1,double x2,double y2,double r2)
11 {
12     double d=(x1-x2)*(x1-x2)+(y1-y2)*(y1-y2);
13     if(d>=(r1+r2)*(r1+r2))return 0;
14     if(d<=(r1-r2)*(r1-r2))return r1<r2 ? PI*r1*r1 : PI*r2*r2;
15     d=sqrt(d);
16     double a1=acos((r1*r1+d*d-r2*r2)/(2.0*r1*d));
17     double a2=acos((r2*r2+d*d-r1*r1)/(2.0*r2*d));
18     double s1=a1*r1*r1;
19     double s2=a2*r2*r2;
20     double t=(r1+r2+d)/2.0;
21     t=2.0*sqrt(t*(t-r1)*(t-r2)*(t-d));
22     return s1+s2-t;
23 }
24 int main()
25 {
26     //ios::sync_with_stdio(false);
27     int t;
28     double r1,r2,x1,y1,x2,y2;
29     scanf("%d",&t);
30     int cas=1;
31     while(t--)
32     {
33         scanf("%lf%lf%lf%lf%lf%lf",&r1,&r2,&x1,&y1,&x2,&y2);
34         double ans=0;
35         ans-=area(x1,y1,r2,x2,y2,r1)*2;
36         ans+=area(x1,y1,r2,x2,y2,r2);
37         ans+=area(x1,y1,r1,x2,y2,r1);
38         printf("Case #%d: ",cas++);
39         printf("%.6lf
",ans);
40     }
41     return 0;
42 }
代码君

K题

K.Bro Sorting

Time Limit: 2000/2000 MS (Java/Others)    Memory Limit: 512000/512000 K (Java/Others)


Problem Description
Matt’s friend K.Bro is an ACMer.

Yesterday, K.Bro learnt an algorithm: Bubble sort. Bubble sort will compare each pair of adjacent items and swap them if they are in the wrong order. The process repeats until no swap is needed.

Today, K.Bro comes up with a new algorithm and names it K.Bro Sorting.

There are many rounds in K.Bro Sorting. For each round, K.Bro chooses a number, and keeps swapping it with its next number while the next number is less than it. For example, if the sequence is “1 4 3 2 5”, and K.Bro chooses “4”, he will get “1 3 2 4 5” after this round. K.Bro Sorting is similar to Bubble sort, but it’s a randomized algorithm because K.Bro will choose a random number at the beginning of each round. K.Bro wants to know that, for a given sequence, how many rounds are needed to sort this sequence in the best situation. In other words, you should answer the minimal number of rounds needed to sort the sequence into ascending order. To simplify the problem, K.Bro promises that the sequence is a permutation of 1, 2, . . . , N .
 


Input
The first line contains only one integer T (T ≤ 200), which indicates the number of test cases. For each test case, the first line contains an integer N (1 ≤ N ≤ 106).

The second line contains N integers ai (1 ≤ ai ≤ N ), denoting the sequence K.Bro gives you.

The sum of N in all test cases would not exceed 3 × 106.
 


Output
For each test case, output a single line “Case #x: y”, where x is the case number (starting from 1), y is the minimal number of rounds needed to sort the sequence.
 


Sample Input
2
5
5 4 3 2 1
5
5 1 2 3 4
 


Sample Output
Case #1: 4
Case #2: 1
Hint
In the second sample, we choose “5” so that after the first round, sequence becomes “1 2 3 4 5”, and the algorithm completes.

题意:求题目完成排序需要题目所述的最小的round次数

分析:每次把不符合排序的最大的数进行swap,那么,这个数在经过一个round之后,所有大于等于它的数一定是最终的排列。

由此,可以将问题转化为判断一个数的右边是否有必该数小的数,若有,则需要一次round。

对于此问题,只需要从右往左统计,并且不断更新最小值,若当前数为最小值,则将最小值更新为当前数,否则round+1

 1 #include <iostream>
 2 #include <cstdio>
 3 using namespace std;
 4 int a[1000010];
 5 int main()
 6 {
 7     ios::sync_with_stdio(false);
 8     int n;
 9     int t;
10     int cas=1;
11     scanf("%d",&t);
12     while(t--)
13     {
14         scanf("%d",&n);
15         int k,s=1,m=0;
16         int ans=0;
17         int minn=1e7;
18         for(int i=1;i<=n;i++)
19         {
20             scanf("%d",&a[i]);
21         }
22         for(int i=n;i>0;i--)
23         {
24             if(a[i]<minn)minn=a[i];
25             else ans++;
26         }
27         printf("Case #%d: %d
",cas++,ans);
28 
29     }
30     return 0;
31 }
代码君
原文地址:https://www.cnblogs.com/fraud/p/4131714.html