日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

698A. Vacations

發布時間:2023/12/10 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 698A. Vacations 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

A. Vacations:題目

題意:每天有四種可能性,鍛煉和比賽分別兩種可能性相乘。不能連續鍛煉或者連續比賽,問最少休息幾天。 思路:dp或者貪心都行。

貪心寫法

#include <bits/stdc++.h> using namespace std; vector<int> a(111); int main() {int n;cin >> n;for (int i = 1; i <= n; i++){cin >> a[i];}int res = 0;for (int i=1;i<=n;i++){if (a[i]==0) res++;else if (a[i]==1){if (a[i-1]==1) res++,a[i] = 0;}else if (a[i]==2) {if (a[i-1]==2) res++,a[i] = 0;}else if (a[i]==3){if (a[i-1]==1) {a[i] = 2;}else if (a[i-1]==2){a[i] = 1;}}}cout<<res<<endl;return 0; }

動態規劃寫法

#include <bits/stdc++.h> using namespace std; vector<int> a(111) int main() {int n;cin >> n;for (int i = 0; i < n; i++){cin >> a[i];}vector<int> ve(3);ve[0] = ve[1] = ve[2] = 0;for (int i = 0; i < n; i++){vector<int> nve(3);nve[1] = nve[2] = 101;//取最大值,防止為0.nve[0] = min(ve[0], min(ve[1], ve[2])) + 1;if (a[i] == 1 || a[i] == 3){nve[1] = min(ve[0], ve[2]);}if (a[i] == 2 || a[i] == 3){nve[2] = min(ve[0], ve[1]);}swap(nve,ve);}int res = min(ve[0],min(ve[1],ve[2]));cout << res << endl;return 0; } 創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎

總結

以上是生活随笔為你收集整理的698A. Vacations的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。