当前位置:   article > 正文

Atcoder经典题_atcoder题库

atcoder题库

ABC—273 B(整数四舍五入)

B - Broken Rounding (atcoder.jp)

题意:求一个整数进行K轮操作后的值是多少。

操作:第一轮对个位进行四舍五入,第二轮对百位进行四舍五入,第三轮对百位进行四舍五入......以此类推到K轮

重点: if (abs(x / g * g - x) < abs((x / g + 1) * g - x))//四舍五入

  1. #include <iostream>
  2. #include <algorithm>
  3. #include <cmath>
  4. using namespace std;
  5. typedef long long ll;
  6. ll x, k, g, res;
  7. int main()
  8. {
  9. cin >> x >> k;
  10. for (int i = 1; i <= k; i++) {
  11. g = pow(10, i);
  12. //四舍五入
  13. if (abs(x / g * g - x) < abs((x / g + 1) * g - x)) {
  14. x = x / g * g;
  15. }
  16. else {
  17. x = (x / g + 1) * g;
  18. }
  19. }
  20. cout << x;
  21. return 0;
  22. }

ABC—275 B(求%公式)

B - ABC-DEF (atcoder.jp)

题意: 一共有六个数A,B,C,D,E,F。求A*B*C - D*E*F最后%998244353的值。

  • 0≤ A,B,C,D,E,F ≤ 1e18

这道题如果直接算在求模部分例题是过不了的。所以我们需要边算边取模

取模公式: ( A - B) % mod = ((A % mod) - (B % mod) + mod) % mod.

  1. #include <iostream>
  2. using namespace std;
  3. int mod = 998244353;
  4. typedef long long ll;
  5. int main()
  6. {
  7. ll a, b, c, d, e, f;
  8. cin >> a >> b >> c >> d >> e >> f;
  9. ll x = (a % mod) * (b % mod) % mod;
  10. x = (x * (c % mod)) % mod;
  11. ll y = (d % mod) * (e % mod) % mod;
  12. y = (y * (f % mod)) % mod;
  13. ll nums = (x + mod - y) % mod;
  14. cout << nums << endl;
  15. return 0;
  16. }

ABC—275 C(正方形的偏移量)

C - Counting Squares (atcoder.jp)

题意:一共有九行字符串,分别由' . '和' # '组成。#为顶点,判断图形中一共有多少个长方形?

思路:遍历整个图形然后通过偏移量来判断是不是正方形。

对于四个顶点的判断:check(i, j) && check(i + di, j + dj) &&check(i + di - dj, j + dj + di) && check(i - dj, j + di);

其实上面是一种写法;

还有一种写法:check(i, j) && check(i + di, j + dj) &&check(i + di + dj, j + dj - di) && check(i + dj, j - di);

至于判断方法可以自己去画个斜正方形来考虑。

  1. #include <iostream>
  2. using namespace std;
  3. const int n = 9;
  4. char s[n][n + 1];
  5. bool check(int x, int y) {
  6. if (x < 0 || x >= n || y < 0 || y >= n) return false;
  7. return s[x][y] == '#';
  8. }
  9. int main() {
  10. for (int i = 0; i < n; i++) cin >> s[i];
  11. int ans = 0;
  12. for (int i = 0; i < n; i++)
  13. for (int j = 0; j < n; j++)
  14. for (int di = 1; di < n; di++)
  15. for (int dj = 0; dj < n; dj++)
  16. ans += check(i, j) && check(i + di, j + dj) &&
  17. check(i + di - dj, j + dj + di) && check(i - dj, j + di);
  18. cout << ans;
  19. return 0;
  20. }

ABC—270 B(负号转正解决问题)

B - Hammer (atcoder.jp)

题意:一共有X, Y, Z三个点。三个点都在x轴坐标上。其中Y会阻挡去路,而Z可以解开Y的阻挡。问到达X需要的最小距离是多少?

思路:由于x, y, z的正负号都不确定,所以考虑起来会有很多情况。

但由于y是解决该题目的唯一阻碍,所以我们可以把y给转正(也就是保证y是正数)。然后再对x和z进行处理。

  1. #include <iostream>
  2. #include <algorithm>
  3. using namespace std;
  4. int x, y, z;
  5. int main()
  6. {
  7. cin >> x >> y >> z;
  8. if (y < 0) {
  9. x = -x;
  10. y = -y;
  11. z = -z;
  12. }
  13. if (x < y) {
  14. cout << abs(x) << endl;
  15. }
  16. else {
  17. if (z > y) cout << -1 << endl;
  18. else {
  19. cout << abs(z) + x - z << endl;
  20. }
  21. }
  22. return 0;
  23. }

ABC—269 C(二进制1的子序列数)

C - Submask (atcoder.jp)

题意:打印一个数x二进制中所有1的子序列数组成的数,可以看下例题

思路:利用一个数组储存所有(x - 1) & x的数,最后反过来打印即可

-1的目的可以让x二进制中的1一个一个去除,最后&x保证新出现的1是x原本就含有的。

eg:4的二进制为100;4 - 1后二进制为011,这里出现的两个1都不是4的二进制里所包含的。所以我们要&4.

  1. #include <iostream>
  2. #include <algorithm>
  3. #include <vector>
  4. using namespace std;
  5. typedef long long ll;
  6. vector<ll> ans;
  7. int main()
  8. {
  9. ll x;
  10. cin >> x;
  11. for (ll a = x; ; a = (a - 1) & x) {
  12. ans.push_back(a);
  13. if (a == 0) break;
  14. }
  15. reverse(ans.begin(), ans.end());
  16. for (ll a : ans) cout << a << endl;
  17. return 0;
  18. }

ABC—278 C

C - Chinese Restaurant (atcoder.jp)

题意:一共有n个人Person0, 1, 2 ,······ ,n - 1围成一桌,每个人的前面都随机放着一道菜(菜也有编号),桌子可以逆时针旋转。问最多有多少个人能够满意能够满意周围的菜。

满意的条件:Person i周围的菜有dish i, dish (i - 1) % n, dish (i + 1) % n.

思路: 利用数组cnt来记录每次转多少次时有多少个人满意。

cnt[i]:i下标的概念表示桌子转了多少次

代码:

  1. #include <iostream>
  2. #include <vector>
  3. #include <algorithm>
  4. using namespace std;
  5. const int N = 2e5 + 10;
  6. int p[N];
  7. int main()
  8. {
  9. int n;
  10. cin >> n;
  11. for (int i = 0; i < n; i++) cin >> p[i];
  12. vector<int> cnt(n);
  13. for (int i = 0; i < n; i++) {
  14. for (int j = 0; j < 3; j++) {
  15. cnt[(p[i] - 1 + j - i + n) % n]++;
  16. }
  17. }
  18. int mx = 0;
  19. for (int i = 0; i < n; i++) mx = max(mx, cnt[i]);
  20. cout << mx << endl;
  21. return 0;
  22. }

ABC—277 C(移动窗口)

C - Index × A(Continuous ver.) (atcoder.jp)

题意:一共有n个数An,求An中m个连续子序列满足1 * B1, 2 * B2, ······ ,m * Bm的值最大。

思路:我们首先可以想到双层循环来一个一个遍历来求到最大值,但这样时间上过不了。所以我们换个思路。既然双层循环过不了,我们可以想下单层循环怎么能过。这里我们就可以想到利用窗口移动来完成。利用窗口移动的话我们每次移动需要加上m * a[i], 然后需要减去a[i]的前m个序列之和。这里我们就可以利用前缀和来完成。最后,一步一步比较得出最大值。

代码:

  1. #include <iostream>
  2. using namespace std;
  3. typedef long long ll;
  4. const int N = 2e5 + 10;
  5. ll a[N], s[N];
  6. int main()
  7. {
  8. int n, m;
  9. cin >> n >> m;
  10. for (int i = 1; i <= n; i++) cin >> a[i];
  11. //前缀和
  12. for (int i = 1; i <= n; i++) s[i] = s[i - 1] + a[i];
  13. //初始化移动窗口
  14. ll cnt = 0;
  15. for (int i = 1; i <= m; i++) cnt += a[i] * i;
  16. //窗口移动求最大值
  17. ll res = cnt;
  18. for (int i = m + 1; i <= n; i++) {
  19. cnt += a[i] * m - (s[i - 1] - s[i - m - 1]);
  20. res = max(res, cnt);
  21. }
  22. cout << res << endl;
  23. return 0;
  24. }

ABC—266 C(叉乘)

C - Convex Quadrilateral (atcoder.jp)

题意:给定四个点,四个点组成一个图形。判断四个点是否存在一个点的角度大于180度。如果都都小于180度则打印"Yes",否则打印"NO"。

思路:这里需要用到叉乘的概念。两个向量叉乘的值是负的话,那么角度就是大于180度的。

注意:这里的两个的方向是有一点规律的,可以看下代码画个图来判断下。

二维叉乘公式:a(x1,y1),b(x2,y2),则a×b=(x1y2-x2y1)。

代码:

  1. #include <iostream>
  2. using namespace std;
  3. int x[8];
  4. int y[8];
  5. int main()
  6. {
  7. for (int i = 0; i < 4; i++) {
  8. cin >> x[i] >> y[i];
  9. x[i + 4] = x[i];
  10. y[i + 4] = y[i];
  11. }
  12. for (int i = 0; i < 4; i++) {
  13. int e = (x[i + 1] - x[i]) * (y[i + 2] - y[i + 1]) - (x[i + 2] - x[i + 1]) * (y[i + 1] - y[i]);
  14. if (e <= 0) {
  15. cout << "No" << endl;
  16. return 0;
  17. }
  18. }
  19. cout << "Yes" << endl;
  20. return 0;
  21. }

ABC—259(逆时针旋转)

B - Counterclockwise Rotation (atcoder.jp)

题意:给定一个在直角坐标系的一个点(a,b),将该点逆时针旋转d度,求旋转后的点的坐标?

思路:求(x,y)用于旋转的所在圆的半径,然后再求到旋转后的角度,利用x = cosx * r, y = sinx * r。然后求到坐标。

代码:

  1. #include <iostream>
  2. #include <algorithm>
  3. using namespace std;
  4. int main()
  5. {
  6. double a, b, d;
  7. cin >> a >> b >> d;
  8. //用于查找给定数字的斜边,接受两个数字并返回斜边的计算结果,即sqrt(x * x + y * y)。
  9. //这里就是用于求半径
  10. double r = hypot(a, b);
  11. //atan2(y, x)返回的是原点至点(x,y)的方位角,即与 x 轴的夹角。
  12. //取值范围为(-π, π]
  13. double theta = atan2(b, a);
  14. //acos(-1) = π 就相当于cosπ = -1,
  15. //用acos(-1)的好处是精度更高
  16. theta += d * acos(-1.0) / 180.0;
  17. double x = cos(theta) * r;
  18. double y = sin(theta) * r;
  19. cout << x << ' ' << y << endl;
  20. return 0;
  21. }

ABC—254(块存储)

C - K Swap (atcoder.jp)

题意:给一个长度为n的数组A,给定一个数组k。在1  <=  i  <= N - K的范围内,可以交换ai和

ai+k的值。问可以随意按上述交换,最后能形成一个升序有序数组吗

思路:由题意可知ai、ai + k,ai + 2k、ai + 3k······可以随意交换,所以我们可以将每个区间的数(i % k)存入同一个数组中,并把每个区间排好序。再用排好序的数组A与相对应的区间的最小值判断是否相等。

代码:

  1. #include <iostream>
  2. #include <algorithm>
  3. #include <vector>
  4. using namespace std;
  5. int main()
  6. {
  7. int n, k;
  8. cin >> n >> k;
  9. vector<int> a(n);
  10. vector<vector<int>> p(k);
  11. for (int i = 0; i < n; i++) {
  12. cin >> a[i];
  13. //将每个属于同一个随意交换区间的数放入同一个数组中
  14. p[i % k].push_back(a[i]);
  15. }
  16. //给每个区间排序
  17. for (int i = 0; i < k; i++) {
  18. sort(p[i].rbegin(), p[i].rend());
  19. }
  20. sort(a.begin(), a.end());
  21. vector<int> na;
  22. for (int i = 0; i < n; i++) {
  23. na.push_back(p[i % k].back());//将区间最小的数放入对照数组中
  24. p[i % k].pop_back();
  25. }
  26. if (a == na) cout << "Yes" << endl;
  27. else cout << "No" << endl;
  28. return 0;
  29. }

ABC—256(3*3表格表示法求值)

C - Filling 3x3 array (atcoder.jp)

题意:点上面链接看原题。

思路:遍历a,b,d,e,然后将c,f,g,h,i给表示出来。再用H[2] == g + h + i 和c,f,g,h,i五个值不为负数(这个条件必写,不然就错了)作为判断条件。

代码:

  1. #include <iostream>
  2. #include <algorithm>
  3. using namespace std;
  4. int H[3], W[3];
  5. long long res = 0;
  6. int main()
  7. {
  8. for (int i = 0; i < 3; i++) cin >> H[i];
  9. for (int i = 0; i < 3; i++) cin >> W[i];
  10. for (int a = 1; a <= 30; a++) {
  11. for (int b = 1; b <= 30; b++) {
  12. for (int d = 1; d <= 30; d++) {
  13. for (int e = 1; e <= 30; e++) {
  14. int c = H[0] - a - b;
  15. int f = H[1] - d - e;
  16. int g = W[0] - a - d;
  17. int h = W[1] - b - e;
  18. int i = W[2] - c - f;
  19. if (min({c, f, g, h, i}) > 0 && g + h + i == H[2]) res++;
  20. }
  21. }
  22. }
  23. }
  24. cout << res << endl;
  25. return 0;
  26. }

ABC—238 B(切割圆求最大的角度)

B - Pizza (atcoder.jp)

题意:给定一个圆,让这个圆顺时针旋转指定角度,并在12点钟方向进行切割。问在选择n次旋转并切割后,圆的最大角度是多少?

思路:创一个长度为361的bool数组,用来当做哈希表,记录切割的位置。然后遍历整个圆的角度,用cnt来计算每两个相邻的切割线之间的角度,进而比较得到最大值。

代码:

  1. #include <iostream>
  2. #include <algorithm>
  3. using namespace std;
  4. bool f[361];
  5. int n, x;
  6. int main()
  7. {
  8. cin >> n;
  9. f[0] = true;
  10. int p = 0;
  11. for (int i = 0; i < n; i++) {
  12. cin >> x;
  13. p += x, p %= 360;
  14. f[p] = true;
  15. }
  16. int res = 0, cnt = 0;
  17. for (int i = 0; i <= 360; i++) {
  18. if (f[i % 360]) {
  19. res = max(res, cnt);
  20. cnt = 0;
  21. }
  22. cnt++;
  23. }
  24. cout << res << endl;
  25. return 0;
  26. }

ABC—234(二进制表示法)

C - Happy New Year! (atcoder.jp)

题意:在仅由0 和 2组成的数中,找到最小的第k个数。

eg:

 

思路:通过观察可以知道5的二进制:101把1换成2就是题目所要求的数。其他的数也是一样的。所以这里就可以把十进制换成二进制来作答。

代码

  1. #include <iostream>
  2. using namespace std;
  3. typedef long long ll;
  4. int main()
  5. {
  6. ll k;
  7. cin >> k;
  8. string s = "";
  9. while (k >= 1) {
  10. if (k % 2 == 0) {
  11. s = '0' + s;
  12. }
  13. else {
  14. s = '2' + s;
  15. }
  16. k /= 2;
  17. }
  18. cout << s << endl;
  19. return 0;
  20. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/74461
推荐阅读
相关标签
  

闽ICP备14008679号