当前位置:   article > 正文

算法训练.

算法训练.

一.奶牛晒衣服

题解:

这应该是个二分题,但是我用的是贪心暴力写的,思想就是循坏每次都让湿度最高的使用一次烘衣机,要是湿度最高的可以在自然条件下都能晒干就结束循环,这样内部我第一想法就是每次都排个降序;但是交上去发现后面数据超时了,也就是每次都排序太麻烦了,于是边思考到每次只需要把刚刚使用过烘衣机过后的湿度在插入进去,就只要一个for循环即可了这样就会快很多;随后也是AC了

代码:

  1. #include <iostream>
  2. #include <cstring>
  3. #include <cmath>
  4. #include <iomanip>
  5. #include <algorithm>
  6. #include <cstdio>
  7. #include <stack>
  8. #include <queue>
  9. #include<set>
  10. #include <string>
  11. using namespace std;
  12. using ll = long long;
  13. using ull = unsigned long long;
  14. #define up(i, h, n) for (int i = h; i <= n; i++)
  15. #define down(i, h, n) for(int i = h; i >= n; i--)
  16. #define wh(x) while(x--)
  17. #define node struct node
  18. #define it ::iterator
  19. #define Ios ios::sync_with_stdio(false);cin.tie(0);cout.tie(0)
  20. constexpr int MaxN = 500005;
  21. constexpr int MaxM = 100005;
  22. constexpr int mod = 1e9 + 7;
  23. constexpr int inf = 0x7fffffff;
  24. int s[MaxN];
  25. int cmp(int a, int b) {
  26. return a > b;
  27. }
  28. int main() {
  29. Ios;
  30. int n, a, b;
  31. cin >> n >> a >> b;
  32. up(i, 1, n) {
  33. cin >> s[i];
  34. }
  35. sort(s + 1, s + n + 1, cmp);
  36. int ans = 0;
  37. while (true) {
  38. if (s[1] <= ans * a)break;
  39. s[1] -= b;
  40. int temp = s[1];
  41. int i;
  42. for (i = 2; s[i] > temp && i <= n; i++) {
  43. s[i - 1] = s[i];
  44. }
  45. s[i - 1] = temp;
  46. ans++;
  47. }
  48. cout << ans << endl;
  49. }

二.进击的奶牛

题解:

这道题就是经典的二分了,首先这个牛棚得排个序,因为他输入的时候并不是有序输入的,排完序便可以二分了,对于这个二分的条件就是假设当前牛在这个牛棚,那么这头牛与前面那头牛的间距是否大于等于最大的最近距离,最后看牛是否都放入牛棚即可;

代码:

  1. #include <iostream>
  2. #include <cstring>
  3. #include <cmath>
  4. #include <iomanip>
  5. #include <algorithm>
  6. #include <cstdio>
  7. #include <stack>
  8. #include <queue>
  9. #include<set>
  10. #include <string>
  11. using namespace std;
  12. using ll = long long;
  13. using ull = unsigned long long;
  14. #define up(i, h, n) for (int i = h; i <= n; i++)
  15. #define down(i, h, n) for(int i = h; i >= n; i--)
  16. #define wh(x) while(x--)
  17. #define node struct node
  18. #define it ::iterator
  19. #define Ios ios::sync_with_stdio(false);cin.tie(0);cout.tie(0)
  20. constexpr int MaxN = 200005;
  21. constexpr int MaxM = 10005;
  22. constexpr int mod = 1e9 + 7;
  23. constexpr int inf = 0x7fffffff;
  24. ll n, m;
  25. ll a[MaxN];
  26. bool check(int x) {
  27. ll sum = 1;// 初始化为1
  28. int k = 0; // 将第一头牛放入
  29. up(i, 1, n - 1) {
  30. if (a[i] - a[k] >= x) {
  31. sum++;
  32. k = i; // 满足要求放入
  33. }
  34. }
  35. return sum >= m; // 牛是否都放进去
  36. }
  37. int main() {
  38. Ios;
  39. cin >> n >> m;
  40. up(i, 0, n - 1) {
  41. cin >> a[i];
  42. }
  43. sort(a, a + n);
  44. ll l = 0,r=inf;
  45. while (l + 1 < r) {
  46. int mid = (l + r) / 2;
  47. if (check(mid)) l = mid ;
  48. else r = mid ;
  49. }
  50. if (check(r)) cout << r << endl;
  51. else cout << l << endl;
  52. return 0;
  53. }

三.最小生成树

题解:

这道题有两个算法:Kruskal和Prim,我用的是Kruskal,运用结构体将边的起点,终点,权值存起来,按照权值升序排序,建立并查集,并且初始化,随后循环将边加入值并查集,直至n-1即可,也是就五个顶点只需要四条边即可;

代码:

  1. #include <iostream>
  2. #include <cstring>
  3. #include <cmath>
  4. #include <iomanip>
  5. #include <algorithm>
  6. #include <cstdio>
  7. #include <stack>
  8. #include <queue>
  9. #include<set>
  10. #include <string>
  11. using namespace std;
  12. using ll = long long;
  13. using ull = unsigned long long;
  14. #define up(i, h, n) for (int i = h; i <= n; i++)
  15. #define down(i, h, n) for(int i = h; i >= n; i--)
  16. #define wh(x) while(x--)
  17. #define node struct node
  18. #define it ::iterator
  19. #define Ios ios::sync_with_stdio(false);cin.tie(0);cout.tie(0)
  20. constexpr int MaxN = 50005;
  21. constexpr int MaxM = 200005;
  22. constexpr int mod = 1e9 + 7;
  23. constexpr int inf = 0x7fffffff;
  24. node{
  25. int x,y,z;
  26. };
  27. node a[MaxM];
  28. int cmp(node a, node b) {
  29. return a.z < b.z;
  30. }
  31. int f[MaxN];
  32. int find(int x) {
  33. return f[x] == x ? x : f[x] = find(f[x]);
  34. }
  35. int main() {
  36. Ios;
  37. int n, m;
  38. cin >> n >> m;
  39. up(i, 1, n) f[i] = i;
  40. up(i, 1, m) {
  41. cin >> a[i].x >> a[i].y >> a[i].z;
  42. }
  43. sort(a + 1, a + m + 1, cmp);
  44. int ans = 0;
  45. int num = 0;
  46. up(i, 1, m) {
  47. if (find(a[i].x) != find(a[i].y)) {
  48. f[find(a[i].y)] = f[a[i].x];
  49. ans += a[i].z;
  50. num++;
  51. }
  52. if (num == n - 1) {
  53. break;
  54. }
  55. }
  56. if (num == n - 1) cout << ans << endl;
  57. else cout << "orz" << endl;
  58. return 0;
  59. }

四.Minimum Glutton

题意:给你N盘菜肴,每盘菜肴有甜度和咸度两个属性;你可以将这些菜肴给他们任意排序,然后按顺序吃掉,但是当甜度超过X或者咸度超过Y时,就不能吃了;

题解:

题目要求的事最少吃几盘,那就将咸度和甜度两个都排降序,然后看两个分别能吃多少盘,然后取两个当中的min即可;

代码:

  1. #include <iostream>
  2. #include <cstring>
  3. #include <cmath>
  4. #include <iomanip>
  5. #include <algorithm>
  6. #include <cstdio>
  7. #include <stack>
  8. #include <queue>
  9. #include<set>
  10. #include <string>
  11. using namespace std;
  12. using ll = long long;
  13. using ull = unsigned long long;
  14. #define up(i, h, n) for (int i = h; i <= n; i++)
  15. #define down(i, h, n) for(int i = h; i >= n; i--)
  16. #define wh(x) while(x--)
  17. #define node struct node
  18. #define it ::iterator
  19. #define Ios ios::sync_with_stdio(false);cin.tie(0);cout.tie(0)
  20. constexpr int MaxN = 200005;
  21. constexpr int MaxM = 10005;
  22. constexpr int mod = 1e9 + 7;
  23. constexpr int inf = 0x7fffffff;
  24. ll x, y;
  25. int n;
  26. int cmp(int a, int b) {
  27. return a > b;
  28. }
  29. int main() {
  30. Ios;
  31. cin >> n >> x >> y;
  32. vector< int> a(n);
  33. vector< int> b(n);
  34. up(i, 0, n - 1) {
  35. cin >> a[i];
  36. }
  37. up(i, 0, n - 1) {
  38. cin >> b[i];
  39. }
  40. sort(a.begin(), a.end(),cmp);
  41. sort(b.begin(), b.end(), cmp);
  42. int ans = n;
  43. up(i, 0, n - 1) {
  44. x -= a[i];
  45. if (x < 0) {
  46. ans = min(ans, i + 1);
  47. break;
  48. }
  49. }
  50. up(i, 0, n - 1) {
  51. y -= b[i];
  52. if (y < 0) {
  53. ans = min(ans, i + 1);
  54. break;
  55. }
  56. }
  57. cout << ans << endl;
  58. return 0;
  59. }

五.Grid Walk

题意:给你一个长为H,宽为W的一张图,然后图中有若干个障碍物,人物不能穿过障碍物和边界;给你起始位置,和一些指令,求经过这些指令后人物的位置;

题解:

简单的模拟题,就是L是左,R是右,U是上,D是下,模拟判断是否为边界和障碍物即可,若是到了边界或者障碍物就不动,否则就动;

代码:

  1. #include <iostream>
  2. #include <cstring>
  3. #include <cmath>
  4. #include <iomanip>
  5. #include <algorithm>
  6. #include <cstdio>
  7. #include <stack>
  8. #include <queue>
  9. #include<set>
  10. #include <string>
  11. using namespace std;
  12. using ll = long long;
  13. using ull = unsigned long long;
  14. #define up(i, h, n) for (int i = h; i <= n; i++)
  15. #define down(i, h, n) for(int i = h; i >= n; i--)
  16. #define wh(x) while(x--)
  17. #define node struct node
  18. #define it ::iterator
  19. #define Ios ios::sync_with_stdio(false);cin.tie(0);cout.tie(0)
  20. constexpr int MaxN = 200005;
  21. constexpr int MaxM = 10005;
  22. constexpr int mod = 1e9 + 7;
  23. constexpr int inf = 0x7fffffff;
  24. int H, W;
  25. int x, y;
  26. int main() {
  27. Ios;
  28. cin >> H >> W;
  29. cin >> x >> y;
  30. x--; y--;
  31. vector<string> a(H);
  32. up(i, 0, H-1) {
  33. cin >> a[i];
  34. }
  35. string s;
  36. cin >> s;
  37. for (auto c : s) {
  38. if (c == 'L' && y - 1 >= 0 && a[x][y - 1] != '#') {
  39. y--;
  40. }
  41. if (c == 'R' && y + 1 < W && a[x][y + 1] != '#') {
  42. y++;
  43. }
  44. if (c == 'U' && x - 1 >= 0 && a[x - 1][y] != '#') {
  45. x--;
  46. }
  47. if (c == 'D' && x + 1 < H && a[x + 1][y] != '#') {
  48. x++;
  49. }
  50. }
  51. cout << x + 1 << ' ' << y + 1 << endl;
  52. return 0;
  53. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/码创造者/article/detail/927220
推荐阅读
相关标签
  

闽ICP备14008679号