小白月赛17
题目链接:
传送门
A.小sun的假期
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define ll long long
using namespace std;
const int N = 100010;
struct Day {
ll l, r;
} days[N], pl[N];
ll n, m, ans, idx;
bool cmp(Day a, Day b) {
return a.l < b.l;
}
int main() {
scanf("%lld%lld", &n, &m);
for(int i = 0; i < m; i++) {
scanf("%lld%lld", &days[i].l, &days[i].r);
}
sort(days, days + m, cmp);
Day st = days[0];
for(int i = 1; i < m; i++) {
if(days[i].l <= st.r) st.r = max(st.r, days[i].r);
else {
pl[idx++] = st;
st = days[i];
}
}
pl[idx++] = st;
ans = pl[0].l - 1;
for(int i = 1; i < idx; i++) {
ans = max(ans, pl[i].l - pl[i - 1].r);
}
ans = max(ans, n - pl[idx - 1].r);
printf("%lld\n", ans);
}
大致思路:首先把所有的操作存下来,并把连通的区间连起来,并把所有的连通区间存下来。接着重新扫描一遍,找到最长的空闲区间的长度。
B.扫雷
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define ll long long
using namespace std;
const int N = 1010;
int op[8][2] = {{0, 1},{0, -1},{1, 0},{-1, 0},{1, 1},{1, -1},{-1, 1},{-1, -1}};
char mp[N][N], ans[N][N];
int n, m;
bool judge(int x, int y) {
return x > 0 && y > 0 && x <= n && y <= m;
}
int main() {
scanf("%d%d", &n, &m);
for(int i = 1; i <= n; i++) {
scanf("%s", mp[i] + 1);
}
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= m; j++) {
int cnt = 0;
if(mp[i][j] == '*') ans[i][j] = '*';
else {
for(int k = 0; k < 8; k++) {
int curX = i + op[k][0], curY = j + op[k][1];
if(judge(curX, curY)) {
if(mp[curX][curY] == '*') cnt++;
}
}
ans[i][j] = char(cnt + '0');
}
}
}
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= m; j++) {
printf("%c", ans[i][j]);
}
printf("\n");
}
}
这道题扫一遍所有的字符,如果是星号则直接存入答案,不是则统计其8个方位的点是否为星号,并把这个数量存下来作为当前点的答案。
C.异或和
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define ll long long
using namespace std;
const int N = 200010;
int tmp, n, ans;
int main() {
scanf("%d", &n);
while(n--) {
scanf("%d", &tmp);
ans ^= tmp;
}
printf("%d\n", ans);
}
这道题的利用到了异或的性质,偶数个相同的数异或会抵消,所以只要把说有数异或起来即可。
D.解密
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define ll long long
using namespace std;
const int N = 1010;
int k1, k2, si;
string str;
int main() {
scanf("%d%d", &k1, &k2);
cin >> str;
int n = str.size();
for(int i = 0; i < n; i++) {
if(str[i] >= 'A' && str[i] <= 'Z') si = str[i] - 'A';
else si = str[i] - 'a';
if(str[i] >= 'A' && str[i] <= 'Z') {
for(int i = 0; i < 26; i++) {
if(si == (k1 * i + k2) % 26) {
printf("%c", i + 'A');
break;
}
}
} else {
for(int i = 0; i < 26; i++) {
if(si == (k1 * i + k2) % 26) {
printf("%c", i + 'a');
break;
}
}
}
}
}
解密这道我们可以枚举26个字母符合条件的字母输出即可,注意要分大小写判断。
F.小黄鸭
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define ll long long
using namespace std;
const int N = 1010;
const double PI = acos(-1.0);
const double D = 1e-4;
double x, m, h;
bool check(double h) {
double ans = PI * x * h * h - PI * h * h * h / 3;
return ans < m;
}
int main() {
scanf("%lf%lf", &x, &m);
double l = 0, r = 2 * x;
while(r - l > D) {
double mid = (l + r) / 2;
if(check(mid)) l = mid;
else r = mid;
}
printf("%.2lf\n", 2 * x - l);
}
这道题首先通过积分求出下面部分的体积,然后通过二分找到下面部分的一个高度,拿球的直径减去这个高度即为答案。
I.坐电梯
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define ll long long
using namespace std;
const int N = 200010;
int n, k, mx, tmp;
int main() {
scanf("%d%d", &n, &k);
while(n--) {
scanf("%d", &tmp);
mx = max(mx, tmp);
}
printf("%d\n", (mx - 1) + (mx - k));
}
这道题只要找到最高的楼层的层数,然后计算上到顶层加上下降到小sun当前层数的值即为答案。