A题 喵哈哈村的数据筛选游戏

题解:这道题签到题,拿个数组记录一下这个数是否出现过即可。

#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e5+5;
int vis[maxn];
int n;
int a[maxn];
int main(){
while(cin>>n){
memset(vis,0,sizeof(vis));
for(int i=0;i<n;i++){
cin>>a[i];
}
int flag = 0;
for(int i=0;i<n;i++){
if(vis[a[i]]==0){
vis[a[i]]=1;
if(flag==0){
cout<<a[i],flag=1; }
else cout<<" "<<a[i];
}
}
cout<<endl;
}
}

B题:喵哈哈村的扔硬币游戏

题解:直接暴力更新应该也能过,这里我提倡一种前缀和的做法,每次操作的时候只要看这个点被更新了奇数次还是偶数次就好了。

前缀和的具体方式看代码:

#include<bits/stdc++.h>
using namespace std; const int maxn = 1e5+7; int a[maxn]; int main(){
int n,m;
scanf("%d%d",&n,&m);
for(int i=1;i<=m;i++){
int A,B;
scanf("%d%d",&A,&B);
a[A]++;
a[B+1]--;
}
int sum = 0;
for(int i=1;i<=n;i++){
sum+=a[i];
if(sum%2==0)printf("0");
else printf("1");
}
printf("\n");
}

C题:喵哈哈村的三角形游戏

三角插值实际上就是假设三个顶点为p1,p2,p3,那么所有三角形内的点都满足

p.x = ap1.x+bp2.x+cp3.x;

p.y = a
p1.y+bp2.y+cp3.y;

a+b+c = 1

解这个方程得到a,b,c

然后再算p.w = ap1.w+bp2.w+c*p3.w即可。

判断是否在三角形内部,用计算几何的叉积或者面积法都可以。

#include<bits/stdc++.h>
using namespace std;
const double eps = 1e-6;
double x1,yy1,z1,x2,y2,z2,x3,y3,z3;
double x,y;
struct node{
double x,y;
double w;
}p[5];
double dis(node A,node B){
return sqrt((A.x-B.x)*(A.x-B.x)+(A.y-B.y)*(A.y-B.y));
} double area(node A,node B,node C){
double len1 = dis(A,B),len2 = dis(B,C),len3 = dis(A,C);
double p = (len1+len2+len3)/2;
return sqrt(p*(p-len1)*(p-len2)*(p-len3));
}
bool equ(double A,double B){
if(fabs(A-B)<eps)return true;
return false;
}
int main(){
while(cin>>p[0].x>>p[0].y>>p[0].w){
for(int i=1;i<3;i++)
cin>>p[i].x>>p[i].y>>p[i].w;
cin>>p[3].x>>p[3].y;
for(int i=3;i>=0;i--){
p[i].x-=p[0].x;
p[i].y-=p[0].y;
}
if(equ(area(p[0],p[1],p[2]),area(p[0],p[1],p[3])+area(p[0],p[2],p[3])+area(p[1],p[2],p[3]))==false){
cout<<"-1"<<endl;
continue;
}
double B = (p[1].x*p[3].y-p[3].x*p[1].y)/(p[1].x*p[2].y-p[2].x*p[1].y);
double A;
if(equ(p[1].x,0)==false)A = (p[3].x-B*p[2].x)/p[1].x;
else A = (p[3].y-B*p[2].y)/p[1].y;
printf("%.2f\n",A*p[1].w+B*p[2].w+(1.0-A-B)*p[0].w);
}
}

D:喵哈哈村的修路游戏

答案显然为连通块的数量-1,随便拿个东西算连通块的数量就好了。

#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e3+7;
vector<int> E[maxn];
int n,m;
int vis[maxn],cnt=0;
void dfs(int x){
vis[x]=1;
for(int i=0;i<E[x].size();i++){
if(!vis[E[x][i]])
dfs(E[x][i]);
}
}
int main(){
cin>>n>>m;
for(int i=0;i<m;i++){
int a,b;
scanf("%d%d",&a,&b);
E[a].push_back(b);
E[b].push_back(a);
}
for(int i=1;i<=n;i++){
if(!vis[i]){
cnt++;
dfs(i);
}
}
cout<<cnt-1<<endl;
}

E:喵哈哈村的打印机游戏

区间DP,dp[l][r][d]表示区间[l,r],当前底色为d的最小花费。

然后枚举中间的节点进行转移就好了,具体看代码,是一道中规中矩的区间DP题目。

#include<bits/stdc++.h>
using namespace std;
const int maxn = 106;
int dp[maxn][maxn][maxn];
const int inf = 1e8;
string s;
int solve(int l,int r,int d){
if(l>r)return 0;
if(s[l]-'A'==d&&l==r)return dp[l][r][d]=0;
if(l==r)return dp[l][r][d]=1;
if(dp[l][r][d]!=-1)return dp[l][r][d];
dp[l][r][d]=inf;
for(int i=0;i<26;i++){
dp[l][r][d]=min(dp[l][r][d],solve(l,r,i)+1);
}
if(s[l]-'A'==d)dp[l][r][d]=min(dp[l][r][d],solve(l+1,r,d));
if(s[r]-'A'==d)dp[l][r][d]=min(dp[l][r][d],solve(l,r-1,d));
for(int i=l+1;i<r;i++){
if(s[i]-'A'==d){
dp[l][r][d]=min(dp[l][r][d],solve(l,i-1,d)+solve(i+1,r,d));
}
}
return dp[l][r][d];
}
int main(){
while(cin>>s){
memset(dp,-1,sizeof(dp));
cout<<solve(0,s.size()-1,27)<<endl;
}
}

喵哈哈村的魔法考试 Round #9 (Div.2) 题解的更多相关文章

  1. 喵哈哈村的魔法考试 Round #2 (Div.2) 题解

    喵哈哈村的魔法考试 Round #2 (Div.2) 题解 A.喵哈哈村的战争 题解: 这道题就是for一遍,统计每个村子的战斗力的和,然后统计哪个村子的战斗力和大一点就好了. 唯一的坑点,就是这道题 ...

  2. 喵哈哈村的魔法考试 Round #1 (Div.2) 题解

    喵哈哈村的魔法考试 Round #1 (Div.2) 题解 特别感谢出题人,qscqesze. 也特别感谢测题人Xiper和CS_LYJ1997. 没有他们的付出,就不会有这场比赛. A 喵哈哈村的魔 ...

  3. 喵哈哈村的魔法考试 Round #7 (Div.2) 题解

    喵哈哈村的魔法考试 Round #7 (Div.2) 注意!后四道题来自于周日的hihocoder offer收割赛第九场. 我建了个群:欢迎加入qscoj交流群,群号码:540667432 大概作为 ...

  4. 喵哈哈村的魔法考试 Round #1 (Div.2) 题解&源码(A.水+暴力,B.dp+栈)

    A.喵哈哈村的魔法石 发布时间: 2017年2月21日 20:05   最后更新: 2017年2月21日 20:06   时间限制: 1000ms   内存限制: 128M 描述 传说喵哈哈村有三种神 ...

  5. 喵哈哈村的魔法考试 Round #19 (Div.2) 题解

    题解: 喵哈哈村的魔力源泉(1) 题解:签到题. 代码: #include<bits/stdc++.h> using namespace std; int main(){ long lon ...

  6. 喵哈哈村的魔法考试 Round #14 (Div.2) 题解

    喵哈哈村的四月半活动(一) 题解: 唯一的case,就是两边长度一样的时候,第三边只有一种情况. #include <iostream> #include <cstdio> # ...

  7. 喵哈哈村的魔法考试 Round #4 (Div.2) 题解

    有任何疑问,可以加我QQ:475517977进行讨论. A 喵哈哈村的嘟嘟熊魔法(1) 题解 这道题我们只要倒着来做就可以了,因为交换杯子是可逆的,我们倒着去模拟一遍就好了. 有个函数叫做swap(a ...

  8. 喵哈哈村的魔法考试 Round #20 (Div.2) 题解

    题解: A 喵哈哈村的跳棋比赛 题解:其实我们要理解题意就好了,画画图看看这个题意.x<y,那么就交换:x>y,那么x=x%y. 如果我们经过很多次,或者y<=0了,那么就会无限循环 ...

  9. 喵哈哈村的魔法考试 Round #18 (Div.2) 题解

    喵哈哈村的古怪石碑(一) 题解:暴力check一下是等比数列还是等差数列,然后输出答案即可.注意如果数据范围是1e9的话,就要快速幂了. 代码: #include <cstdio> #in ...

  10. 喵哈哈村的魔法考试 Round #13 (Div.2) 题解

    喵哈哈村的木星传说(一) 旋转90°,找找规律就知道(x,y)->(n-1-y,x) 然后输出就好了. #include<bits/stdc++.h> using namespace ...

随机推荐

  1. vue系列之flex经典案例

    案例分析: 1.中间文字居中 2.文字俩边有横线 横线无法固定宽度,因为在大屏手机上,容易出现Bug,宽度不够,俩边会出现大量空隙 解决办法,使用flex布局(网站链接) 代码: <div cl ...

  2. eclipse安装properties插件

    点击“Help”--> Install New Software Name:propertiesLocation:http://propedit.sourceforge.jp/eclipse/u ...

  3. pyhon----模块导入

    正常情况 报错(两个导入都报错)

  4. Fiddler抓包11-HTTPS证书Actions无法导出问题

    前言 在点Actions时候出现Export Failed:The root certificate could not be located.最近有很多小伙伴在fiddler导出证书的时候,遇到无法 ...

  5. python 全栈开发,Day30(纸牌游戏,异常和错误,异常处理)

    一.纸牌游戏                                                                                              ...

  6. javafx实现模态/模式窗口

    import javafx.stage.*; import javafx.scene.*; import javafx.scene.paint.Color; import javafx.scene.c ...

  7. 【C++ Primer 第11章 练习答案】2. 关联容器概述

    11.2.1节练习 [练习11.7]代码: #include<iostream> #include<string> #include<vector> #includ ...

  8. kotlin 插件更新到 1.2.41 程序出错 Please use kotlin-stdlib-jdk7 instead

    buildscript { ext.kotlin_version = '1.2.41' repositories { google() jcenter() } dependencies { class ...

  9. poj 3233 S = A + A^2 + A^3 + … + A^k A是一个n X n矩阵 (矩阵快速幂)

    S = A + A^2 + A^3 + … + A^k A是一个n*n矩阵 Sample Input 2 2 4 //n k MOD0 11 1Sample Output 1 22 3 先求 I +  ...

  10. 第一个Struts2实例之hello world!

    Struts官网:http://struts.apache.org/ Struts2框架预先实现了一些功能    1:请求数据自动封装    2:文件上传的功能    3:对国际化功能的简化    4 ...