当前位置:   article > 正文

Codeforces Round 937 (Div. 4) 题解(A-F)_codeforces round 937 (div. 4) f 题

codeforces round 937 (div. 4) f 题

题目链接

Codeforces Round 937 (Div. 4)

A

思路

直接按题目的意思判断即可

代码:

  1. void solve(){
  2. int a, b, c;
  3. cin >> a >> b >> c;
  4. if (a < b && b < c) {
  5. cout << "STAIR" << endl;
  6. }
  7. else if (a<b && b>c) {
  8. cout << "PEAK" << endl;
  9. }
  10. else {
  11. cout << "NONE" << endl;
  12. }
  13. }

B

思路

考虑输出的时候交替一下奇偶即可

代码

  1. void solve(){
  2. int n;
  3. cin >> n;
  4. for (int i = 1; i <= n; i++) {
  5. if (i & 1) {
  6. for (int j = 1; j <= n; j++) {
  7. if (j & 1) {
  8. cout << "##";
  9. }
  10. else cout << "..";
  11. }
  12. cout << endl;
  13. for (int j = 1; j <= n; j++) {
  14. if (j & 1) {
  15. cout << "##";
  16. }
  17. else cout << "..";
  18. }
  19. cout << endl;
  20. }
  21. else {
  22. for (int j = 1; j <= n; j++) {
  23. if (j & 1) {
  24. cout << "..";
  25. }
  26. else cout << "##";
  27. }
  28. cout << endl;
  29. for (int j = 1; j <= n; j++) {
  30. if (j & 1) {
  31. cout << "..";
  32. }
  33. else cout << "##";
  34. }
  35. cout << endl;
  36. }
  37. }
  38. }

C

思路

特判一下时钟为00和12的时候,然后分成大于12和小于12两个情况来讨论即可。

代码

  1. void solve(){
  2. string s;
  3. cin >> s;
  4. string h = "",m="";
  5. h += s[0];
  6. h+=s[1];
  7. m += s[3];
  8. m+=s[4];
  9. if (stoi(h) == 12) {
  10. cout << s << " PM" << endl;
  11. return;
  12. }
  13. if (stoi(h) == 0) {
  14. cout << 12 << ":" << m << " AM" << endl;
  15. return;
  16. }
  17. if (stoi(h) < 12) {
  18. cout << s << " AM" << endl;
  19. return;
  20. }
  21. else {
  22. if(stoi(h)-12>=10) cout << stoi(h) - 12 << ":" << m << " PM" << endl;
  23. else cout <<0<< stoi(h) - 12 << ":" << m << " PM" << endl;
  24. }
  25. }

D

思路

筛出给定数字的因子,其中因子应该满足是1,0组成的数,然后再从从小到大除以一下因子,最后判断剩下的数是否满足01组成的数即可。

代码

  1. void solve() {
  2. int n;
  3. cin >> n;
  4. string s = to_string(n);
  5. bool ok = true;
  6. for (auto& x : s) {
  7. if (x != '1' && x != '0') ok = false;
  8. }
  9. if (ok) {
  10. cout << "YES" << endl;
  11. return;
  12. }
  13. auto check = [&](string s) {
  14. for (auto& x : s) {
  15. if (x != '1' && x != '0') return false;;
  16. }
  17. return true;
  18. };
  19. vector<int>b;
  20. for (int i = 2; i <= sqrt(n); ++i) {
  21. if (n % i == 0) {
  22. if (check(to_string(i))) {
  23. b.push_back(i);
  24. }
  25. }
  26. }
  27. for (auto& x : b) {
  28. while (n % x == 0) n /= x;
  29. }
  30. if (check(to_string(n))) cout << "YES" << endl;
  31. else cout << "NO" << endl;
  32. }

E

思路

筛选出字符串长度的所有因子,然后枚举因子,用map存下所有的子串大小,判断不同子串的个数,如果子串个数为1,则直接成立。如果子串个数大于2,则直接不成立。如果不同子串个数为2,并且其中一个子串只有一个,那么判断一下不同的两个子串不同的字符个数,若为1,则成立,反之,不成立。

代码

  1. void solve() {
  2. int n;
  3. string s;
  4. cin >> n >> s;
  5. s = " " + s;
  6. set<int>st;
  7. for (int i = 1; i <= sqrt(n); ++i) {
  8. if (n % i == 0) {
  9. st.insert(i);
  10. st.insert(n / i);
  11. }
  12. }
  13. for (auto& x : st) {
  14. map<string, int>mp;
  15. for (int i = 1; i <= n; i += x) {
  16. mp[s.substr(i, x)]++;
  17. }
  18. if (mp.size() == 1) {
  19. cout << x << endl;
  20. return;
  21. }
  22. else if (mp.size() == 2) {
  23. string s1 = (*mp.begin()).first;
  24. string s2 = (*mp.rbegin()).first;
  25. int cnt = 0;
  26. for (int i = 0; i < s1.size(); ++i) {
  27. if (s1[i] != s2[i]) ++cnt;
  28. if (cnt > 1) {
  29. break;
  30. }
  31. }
  32. if (cnt == 1 && ((*mp.begin()).second == 1 || (*mp.rbegin()).second == 1)) {
  33. cout << x << endl;
  34. return;
  35. }
  36. }
  37. }
  38. cout << n << endl;
  39. }

F

思路

首先先判断一下是否能构成二叉树,构成二叉树的条件是:后代为2的节点*2+后代为1的节点+1=总结点,即:2*a+b+1=a+b+c。如果不成立,直接输出-1,如果成立,则需要构造一颗最小深度的二叉树。如何构造?考虑一棵二叉树节点数量不变的条件下,如果越接近满二叉树,那么这棵树高度越小。所以在构造时尽可能往满二叉树方向构造,即先使用后代为2的点,然后再使用后代为1的点,最后使用后代为0的叶子结点,当叶子结点不够则结束。由于数据a+b+c<2e5,所以可以直接模拟。

代码

  1. void solve() {
  2. int a, b, c;
  3. cin >> a >> b >> c;
  4. int sum = a + b + c;
  5. if (2 * a + b + 1 != sum) {
  6. cout << -1 << endl;
  7. return;
  8. }
  9. queue<int>q;
  10. if (a) {
  11. q.push(2);
  12. --a;
  13. }
  14. else {
  15. if (b) {
  16. q.push(1);
  17. --b;
  18. }
  19. else {
  20. cout << 0 << endl;
  21. return;
  22. }
  23. }
  24. int h = 0;
  25. while (1) {
  26. ++h;
  27. int m = q.size();
  28. bool ok = true;
  29. for (int i = 1; i <= m; ++i) {
  30. int node = q.front(); q.pop();
  31. if (node == 0) continue;
  32. else if (node == 2) {
  33. if (a >= 2) {
  34. a -= 2;
  35. q.push(2);q.push(2);
  36. }
  37. else if (a == 1) {
  38. q.push(2);
  39. --a;
  40. if (b) {
  41. q.push(1);
  42. --b;
  43. }
  44. else {
  45. if (c) {
  46. q.push(0);
  47. --c;
  48. if (c <= 0) ok=false;
  49. }
  50. }
  51. }
  52. else {
  53. if (b >= 2) {
  54. q.push(1); q.push(1);
  55. b -= 2;
  56. }
  57. else if (b == 1) {
  58. q.push(1); q.push(0);
  59. --b; --c;
  60. if (c <= 0) ok=false;
  61. }
  62. else {
  63. q.push(0); q.push(0);
  64. c -= 2;
  65. if (c <= 0) ok=false;
  66. }
  67. }
  68. }
  69. else if (node == 1) {
  70. if (b >= 1) {
  71. b --;
  72. q.push(1);
  73. }
  74. else {
  75. q.push(0);
  76. c--;
  77. if (c <= 0) ok=false;
  78. }
  79. }
  80. }
  81. if (!ok) break;
  82. }
  83. cout << h << endl;
  84. }

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

闽ICP备14008679号