本文主要是介绍AtCoder Beginner Contest 197(Sponsored by Panasonic),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
AtCoder Beginner Contest 197(Sponsored by Panasonic)
- A - Rotate
- B - Visibility
- C - ORXOR
- D - Opposite
导读:
简单的题目,只说明题意,或者直接说明结论
下面的难题,会做详细的解释和证明
立个flag,在座的大佬们做个见证:一个月刷60场ABC,现在2021/6/16,第二天,已打卡3场。
A - Rotate
将串复制一遍,然后从第二个字符输出三个字符
void work()
{string s; cin >> s;s += s;for (int i = 1; i < 4; i ++ ) cout << s[i];cout << endl;
}
B - Visibility
题意:从(x,y)扩展,如果是
.
就可以走,如果是#
就停,问有多少个.
,那我们就直接向四个方向扩展
void work()
{int n, m, x, y;cin >> n >> m >> x >> y;char g[110][110];for (int i = 0; i < n; i ++ ) scanf("%s", g[i]);x --, y --;if (g[x][y] == '#'){cout << "0" << "\n";return;}int ans = 1;//向上int a = x - 1;while (a >= 0 && g[a][y] == '.') a --, ans ++ ;//向下a = x + 1;while (a < n && g[a][y] == '.') a ++, ans ++ ;//向左int b = y - 1;while (b >= 0 && g[x][b] == '.') b --, ans ++ ;//向右b = y + 1;while (b < m && g[x][b] == '.') b ++, ans ++;cout << ans << "\n";return;
}
C - ORXOR
题意:给一个长度为n的序列,在n-1个空格中添加
^
或者|
,求一个最小值
我们知道,|越多越大,但是^却可能大,也可能小。我第一次做的时候,使用DFS做的,结果是对的,但是花了我一小时的时间debug,当时太拉跨了,现在看到官方题解,确实哦,能用DFS做的,用二进制枚举同样不超时的,这里就是二进制枚举的做法了。
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < n; i ++ )
const int N = 21;
int n;
int a[N];
int main()
{cin >> n;rep(i, n) cin >> a[i];int ans = INT_MAX;rep(i, 1 << (n - 1)) //枚举取xor的方法{int xor_val = 0;int or_val = 0;rep(j, n + 1){if (j < n) or_val |= a [j];if (j == n || i >> j & 1) xor_val ^= or_val, or_val = 0;}ans = min(ans, xor_val);}cout << ans << "\n";return 0;
}
D - Opposite
计算几何:这是我整理的这个题的公式推导
#include <bits/stdc++.h>
using namespace std;
int main()
{int n; cin >> n;double x, x2, y, y2; cin >> x >> y >> x2 >> y2;double a = (x + x2) / 2, b = (y + y2) / 2;double angle = acos(-1) * 2 / n;printf("%.5lf %.5lf\n", a + (x - a) * cos(angle) - (y - b) * sin(angle), b + (x - a) * sin(angle) + (y - b) * cos(angle));return 0;
}
这篇关于AtCoder Beginner Contest 197(Sponsored by Panasonic)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!