当前位置: 首页 > news >正文

网站建设 9awordpress建企业展示

网站建设 9a,wordpress建企业展示,观澜小学网站建设,有教做衣服的网站吗A - Excange 题意 用这些零钱能否不找零地买这些物品 思路 因为 500 5 100 10 50 50 10 500 1 5005\times 10010\times 5050\times 10500\times 1 5005100105050105001。 所以说,我们这道题可以采用贪心算法,优先取大的减去目前零钱最大的…

A - Excange

题意

用这些零钱能否不找零地买这些物品

思路

因为 500 = 5 × 100 = 10 × 50 = 50 × 10 = 500 × 1 500=5\times 100=10\times 50=50\times 10=500\times 1 500=5×100=10×50=50×10=500×1

所以说,我们这道题可以采用贪心算法,优先取大的减去目前零钱最大的即可。

#include <iostream>
#include <cstdio>
#include <queue> 
#define N 15
using namespace std;
int money[N],n,X[N],sum,p[10]={0,1,5,10,50,100,500};
priority_queue<int> q;
signed main(){cin >> money[1] >> money[2] >> money[3] >> money[4] >> money[5] >> money[6] >> n;for (int i = 1;i <= n;i ++) cin >> X[i],sum += X[i],q.push(X[i]);if (sum > money[1] * 1 + money[2] * 5 + money[3] * 10 + money[4] * 50 + money[5] * 100 + money[6] * 500) return cout << "No",0;for (int i = 6;i;i --) while (!q.empty() && money[i] && q.top() >= p[i]) {int t = q.top();q.pop();t -= p[i];money[i] --;
//			cout << i << ' ' << t << ' ' << t + p[i] << ' ' << money[i] << endl;if (t)q.push(t);}if (!q.empty()) cout << "No";else cout << "Yes";return 0;
}

B - Puzzle of Lamps

关灯

有两个选择:

  • A:把排最左边的 0 变成 1
  • B:把排最左边的 1 变成 0

思路

很容易想到先把 A 选择到最右边的位置,然后用 B 把最右边 1 的位置的左边第一个没有 0 的位置,一直重复操作即可。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#define N 50
using namespace std;
int n;
string s;
int ans = 0;
string ans_st = "";
signed main(){cin >> n >> s;int k = n - 1;while (k >= 0) {while (k >= 0 && s[k] != '1') k --;ans += k + 1;for (int i = 0;i <= k;i ++) ans_st += "A";while (k >= 0 && s[k] != '0') k --;ans += k + 1;for (int i = 0;i <= k;i ++) ans_st += "B";}cout << ans << endl << ans_st;return 0;
}

C - Routing

题意

有一个 N × N N\times N N×N 的地图,每个格子上标有红色或者蓝色(R 或者 B),现在我们有若干次操作把当前格子变成紫色(P,代表既是 R 的路又是 B 的路)使得:

  • ( 1 , 1 ) → ( N , N ) (1,1)\rightarrow(N,N) (1,1)(N,N) 只走 R 的路能够到达;
  • ( 1 , N ) → ( N , 1 ) (1,N)\rightarrow(N,1) (1,N)(N,1) 只走 B 的路能够到达。

求操作的最小次数。

思路

观察特性,发现这里走的两条路径必定会有一个交点。但是这个交点只会被算一次。

我们可以想到用 BFS 搜索 ( 1 , 1 ) → ( N , N ) (1,1)\rightarrow(N,N) (1,1)(N,N) 以及 ( 1 , N ) → ( N , 1 ) (1,N)\rightarrow(N,1) (1,N)(N,1) 的路径的最少走不合法的格子的数量,最后相加即可。

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <vector>
#define N 505using namespace std;
const int INF = 1e9;
int n,vis1[N][N],vis2[N][N],fxy[4][2] = {{1,0},{-1,0},{0,-1},{0,1}};
bool a[N][N]; 
struct pos{int x,y,sp;
};
queue<pos> q;
signed main(){cin >> n;for (int i = 1;i <= n;i ++)for (int j = 1;j <= n;j ++) {char x;cin >> x;a[i][j] = (x == 'R');}for (int i = 0;i <= n + 1;i ++)for (int j = 0;j <= n + 1;j ++)vis1[i][j] = vis2[i][j] = INF;vis1[1][1] = 0;q.push({1,1,0});while(!q.empty()) {pos t = q.front();q.pop();for (int i = 0;i < 4;i ++) {int xx = t.x + fxy[i][0],yy = t.y + fxy[i][1];if (xx < 1 || yy < 1 || xx > n || yy > n) continue;int nt =t.sp;if (!a[xx][yy]) nt ++;if (vis1[xx][yy] <= nt) continue;q.push({xx,yy,nt});vis1[xx][yy] = nt;}}q.push({1,n,0});while(!q.empty()) {pos t = q.front();q.pop();for (int i = 0;i < 4;i ++) {int xx = t.x + fxy[i][0],yy = t.y + fxy[i][1];if (xx < 1 || yy < 1 || xx > n || yy > n) continue;int nt =t.sp;if (a[xx][yy]) nt ++;if (vis2[xx][yy] <= nt) continue;q.push({xx,yy,nt});vis2[xx][yy] = nt;}}cout << vis1[n][n] + vis2[n][1] << endl;return 0;
}

D - Earthquakes(以后更)

题意

n n n 个建筑,高度都为 j j j
n n n 次地震,第 i i i 次地震的两级中的一级会倒下,向左和向右倒的概率为 50 % 50\% 50%,而且当前第 i i i 个建筑的位置为 a i a_i ai,如果说 ∣ a i − a i ± 1 ∣ ≤ h |a_i-a_{i\pm1}|\le h aiai±1h,那么那个建筑也会随着他倒下的方向倒下。
那么:第 i i i 次地震时,建筑全都倒下的概率是多少?请将它乘上 2 n 2^n 2n 后输出,可以证明,输出的是整数。

思路

http://www.lakalapos1.cn/news/670/

相关文章:

  • 做箱包关注哪个网站jsp网站建设项目实战课本内容
  • 网站建设现况分析重庆金融公司网站建设
  • 国内ui做的好的网站有哪些手机优化专家下载
  • 网站建站推广最近有哪些新闻
  • 网站源码授权公司网络营销策划书
  • 网站优化排名推荐seo推广招聘
  • 怎么用joomla做网站python 建设网站
  • iH5做网站做软件外包公司
  • 陕西正天建设有限公司网站大庆北京网站建设
  • 做外贸网站需要请外贸文员吗大连网站建设#选领超科技
  • 安庆市大观区城乡建设局网站网站建设推广图片
  • 如何制作简易个人网站网站建设包括哪些东西
  • 网站平台怎么做的网页设计学习内容
  • 专业简历制作网站推荐app软件定制开发
  • 网站开发费用报价单在线网站备份
  • 网站管理系统免费模板网站建设
  • 做网站时尺寸多大wordpress 视频插件
  • 如何上传到自己的网站可以发描文本的网站
  • 免费网站建设哪个好 - 百度福步论坛外贸交流手机版
  • js做网站跳转娄底优秀网站建设
  • 荆州市建设厅网站住宅城乡建设部门户网站
  • 刷评论网站推广360浏览器怎么拦截网站
  • 保定网站排名贵州专业网站建设费用
  • 房山广州网站建设网站建设宣传视频
  • 公司做网站的费属于广告费么移动网站建设作业
  • 一个网站主机多少钱一年网页设计制作教程dw
  • 学做美食的网站视频微信答题小程序制作
  • 网站建设罒金手指下拉壹陆谷歌怎么推广自己的网站
  • 个人网站 备案 攻略无锡网站建设价格低
  • 打鱼网站建设优质网站建设报价