cf424(A,B,C)
Pasha has many hamsters and he makes them work out. Today, n hamsters (n is even) came to work out. The hamsters lined up and each hamster either sat down or stood up.
For another exercise, Pasha needs exactly hamsters to stand up and the other hamsters to sit down. In one minute, Pasha can make some hamster ether sit down or stand up. How many minutes will he need to get what he wants if he acts optimally well?
The first line contains integer n (2 ≤ n ≤ 200; n is even). The next line contains n characters without spaces. These characters describe the hamsters' position: the i-th character equals 'X', if the i-th hamster in the row is standing, and 'x', if he is sitting.
In the first line, print a single integer — the minimum required number of minutes. In the second line, print a string that describes the hamsters' position after Pasha makes the required changes. If there are multiple optimal positions, print any of them.
4 xxXx
1 XxXx
2 XX
1 xX
6 xXXxXx
0 xXXxXx
简单模拟
#include <iostream> #include <stdio.h> #include <stdlib.h> #include<string.h> #include<algorithm> #include<math.h> using namespace std; char a[205]; int main() { int n,s=0; cin>>n; for(int i=0; i<n; i++) { cin>>a[i]; if(a[i]=='X') s++; } if(s==n/2) cout<<0<<endl<<a<<endl; else { cout<<abs(s-n/2)<<endl; if(s<n/2) { s=n/2-s; for(int i=0; i<n; i++) if(s&&a[i]=='x') cout<<'X',s--; else cout<<a[i]; } else { s=s-n/2; for(int i=0; i<n; i++) if(s&&a[i]=='X') cout<<'x',s--; else cout<<a[i]; } } return 0; }
The administration of the Tomsk Region firmly believes that it's time to become a megacity (that is, get population of one million). Instead of improving the demographic situation, they decided to achieve its goal by expanding the boundaries of the city.
The city of Tomsk can be represented as point on the plane with coordinates (0; 0). The city is surrounded with n other locations, the i-th one has coordinates (xi, yi) with the population of ki people. You can widen the city boundaries to a circle of radius r. In such case all locations inside the circle and on its border are included into the city.
Your goal is to write a program that will determine the minimum radius r, to which is necessary to expand the boundaries of Tomsk, so that it becomes a megacity.
The first line of the input contains two integers n and s (1 ≤ n ≤ 103; 1 ≤ s < 106) — the number of locatons around Tomsk city and the population of the city. Then n lines follow. The i-th line contains three integers — the xi and yi coordinate values of the i-th location and the number ki of people in it (1 ≤ ki < 106). Each coordinate is an integer and doesn't exceed 104 in its absolute value.
It is guaranteed that no two locations are at the same point and no location is at point (0; 0).
In the output, print "-1" (without the quotes), if Tomsk won't be able to become a megacity. Otherwise, in the first line print a single real number — the minimum radius of the circle that the city needs to expand to in order to become a megacity.
The answer is considered correct if the absolute or relative error don't exceed 10 - 6.
4 999998 1 1 1 2 2 1 3 3 1 2 -2 1
2.8284271
4 999998 1 1 2 2 2 1 3 3 1 2 -2 1
1.4142136
2 1 1 1 999997 2 2 1
-1
读懂题意挺坑的。。。。
#include <iostream> #include <stdio.h> #include <stdlib.h> #include<string.h> #include<algorithm> #include<math.h> using namespace std; struct data { int x,y,k; double r; }a[10010]; bool cmp(data a,data b) { return a.r<b.r; } int main() { int n,s; cin>>n>>s; for(int i=0;i<n;i++) cin>>a[i].x>>a[i].y>>a[i].k,a[i].r=sqrt((double)a[i].x*(double)a[i].x+(double)a[i].y*(double)a[i].y); sort(a,a+n,cmp); int flag=0;double rr; for(int i=0;i<n;i++) { //cout<<a[i].r<<endl; s+=a[i].k; if(s>=1000000){flag=1;rr=a[i].r;break;} } if(flag)printf("%.7f\n",rr); else cout<<-1<<endl; return 0; }
找规律题,有点儿递推的意思~不过,话说scanf真的很快,才跑了249ms,不知为何用cin却2000ms都跑不完。。。。。。不是说cin只是scanf的3倍吗。。。。
#include <iostream> #include <stdio.h> #include <stdlib.h> #include<string.h> #include<algorithm> #include<math.h> using namespace std; typedef long long ll; ll yh[1000010]={0}; int main() { ll n; cin>>n; ll ans=0; for(ll i=0;i<n;i++) { yh[i+1]=(i+1)^yh[i]; ll tem; scanf("%lld",&tem); ans^=tem; ans^=yh[i]; if(i>1) { ll x=(n-i)/i; ll sh=n-i-x*i; ans^=yh[sh]; if(x%2==1) ans^=yh[i-1]; } } cout<<ans<<endl; return 0; }