首页 > 其他分享 >pezhzh的快乐寒假作业[2024/1/18]

pezhzh的快乐寒假作业[2024/1/18]

时间:2024-04-05 13:01:29浏览次数:27  
标签:ch int 18 dfs 2024 ++ 寒假作业 jj res

这个虽说是1/18的寒假作业,但也如上篇文章所说的那样,现在是4/4,我在补作业;

A - 吃奶酪

洛谷:P1433;

看到这种当然会想到dfs搜索;

于是写了一个带小剪枝的dfs试试水;

#include<bits/stdc++.h>
using namespace std;
struct awa{
	double x, y;
}b[20];
int n, a[20];
double res = 1000;
double way(int i, int t){
	return sqrt(pow(b[i].x - b[t].x, 2) + pow(b[i].y - b[t].y, 2));
}
void dfs(int x, int t, double num){
	if(num > res) return;
	if(t == n){
		res = num;
		return;
	}for(int i = 1; i <= n; i ++){
		if(!a[i]){
			a[i] = 1;
			dfs(i, t + 1, num + way(x, i));
			a[i] = 0;
		}
	}
}
int main(){
	cin >> n;
	for(int i = 1; i <= n; i ++) cin >> b[i].x >> b[i].y;
	a[0] = 1;
	dfs(0, 0, 0);
	printf("%.2f", res);
}

没想到绿题确实有它的本事;

难受,特别看到加强测试点一看就是为了卡我TLE的;

于是疯狂地找规律,画图,看哪里还有没剪的枝;

一万年过去了.......

顶不住去看一下讨论版吧;

QAQ;

紧急学一下状态压缩DP;

在经过的节点与最终的落点相同时,记录最短的dp结果;

经过节点用二进制表示,1为走过了,0为没走过;

掺杂进dfs里;

#include<bits/stdc++.h>
using namespace std;
struct awa{
	double x, y;
}b[16];
int n, a[16];
double res = 1e9, dp[1 << 15][16];
double way(int i, int t){
	return sqrt(pow(b[i].x - b[t].x, 2) + pow(b[i].y - b[t].y, 2));
}
void dfs(int x, int t, double num, int k){
	if(num > res) return;
	if(t == n){
		res = num;
		return;
	}for(int i = 1; i <= n; i ++){
		if(!a[i]){
			int o = k + (1 << (i - 1));
			if(dp[o][i] != 0 && dp[o][i] <= num + way(i, x)) continue;
			a[i] = 1;
			dp[o][i] = num + way(i, x);
			dfs(i, t + 1, num + way(x, i), o);
			a[i] = 0;
		}
	}
}
int main(){
	cin >> n;
	for(int i = 1; i <= n; i ++) cin >> b[i].x >> b[i].y;
	a[0] = 1;
	dfs(0, 0, 0, 0);
	printf("%.2f", res);
}

B - 迷宫

洛谷:P1605;

一个深搜的走迷宫;

标志性数组的1与0的区别就像是障碍物一样,但唯一的不同是我走过的路要变1再变0,但障碍只要一直是1就好;

因为懒得做边界判断所以让地图的最外边一圈都设定成1,也就是main里那两个for的作用;

#include<bits/stdc++.h>
using namespace std;
int n, m, a[6][6], enx, eny, cnt;
int dx[] = {0, -1, 1, 0};
int dy[] = {1, 0, 0, -1};
void dfs(int x, int y){
	if(a[x][y])return;
	if(x == enx && y == eny){
		cnt ++;
		return;
	}a[x][y] = 1;
	for(int i = 0; i < 4; i++)
		dfs(x + dx[i], y + dy[i]);
	a[x][y] = 0;
}
int main(){
	int bex, bey, x, y, t;
	cin >> n >> m >> t >> bex >> bey >> enx >> eny;
	for(int i = 0; i <= n + 1; i ++){
		a[0][i] = 1;
		a[m + 1][i] = 1;
	}
	for(int i = 0; i <= m + 1; i ++){
		a[i][0] = 1;
		a[i][m + 1] = 1;
	}
	while(t --){
		cin >> x >> y;
		a[x][y] = 1;
	}
	dfs(bex, bey);
	cout << cnt;
}

C - 单词接龙

洛谷:P1019;

简单的搜索,但是难点主要在找能否接龙的部分;

首先,每个单词能在龙里出现两次;

一般的标志性数组只有0和1,但是我们要存0,1和2来判定单词能否使用;

其次是如何看单词重复部分;

以当前单词为基准,下一个单词能否作为接在后面的选项的判定方法是看长度相等的当前单词的尾巴与长度相等的下一单词的头是否完全重合;(string库的find函数);

str1.find(str2, k);(从str1的第k个开始, 查找子串st2, 返回找到的位置, 找不到返回-1);

随后将能接的单词接在龙的后面(string库的replace函数);

str1.replace(k, n, str2); (从str1的第k个开始, 往后n个,替换成str2);

#include <bits/stdc++.h>
using namespace std;
int n, res, a[21], k;
string b[21], str;
char ch;
void dfs(int t, string d){
    if(d.length() > res) res = d.length();
    for(int i = 0; i < n; i++){
        if(a[i] < 2){
            for(int j = 1; j <= b[i].length(); j++){
                k = d.find(b[i].substr(0, j), d.length() - j);
                if(k != -1){
                    str = d;
                    str.replace(k, b[i].length(), b[i]);
					a[i] ++;
                    dfs(t + 1, str);
                    a[i] --;
                }
            }
        }
    }
}
int main(){
    cin >> n;
    for(int i = 0; i < n; i ++)
        cin >> b[i];
    cin >> ch;
    for(int i = 0; i < n; i ++){
        if(b[i][0] == ch){
            a[i] ++;
            dfs(1, b[i]);
        }
    }
    cout << res << endl;
    return 0;
}

一开始难死了,但是硬着头皮也能写;

D - 单词方阵

洛谷:P1101;

看到题的时候几乎没有想到任何的思路与算法,看数据量也不大的样子,就走上了暴力的不归路;

大致想法是对于所有的‘y’,都去查看它的8个方向,若每个字母都能对上yizhong,就把这7个字母存到初始都为*的答案数组里;

程序实现与bug调试耗时巨大;

#include<bits/stdc++.h>
using namespace std;
const int c1[8]={0,-1,-1,-1,0,1,1,1}, c2[8]={1,1,0,-1,-1,-1,0,1};
int n;
string hc[111], ch[111];
char ch1[] = {"yizhong"};
int main(){
	cin >> n;
	for(int i = 0; i < n; i ++){
		cin >> ch[i];
		for(int j = 0; j < n; j ++)
		hc[i] += '*';
	}
	for(int i = 0; i < n; i ++){
		for(int j = 0; j < n; j ++){
			if(ch[i][j] == 'y'){
				for(int jj = 0; jj < 8; jj ++){
					int x = i, y = j, b = 1;
					for(int k = 1; k < 7; k ++){
						x += c1[jj];
						y += c2[jj];
						if(x < 0 || x > n || y < 0 || y > n) b = 0;
						if(b) if(ch[x][y] != ch1[k]) b = 0;
						if(!b) break;
					}
					x = i, y = j;
					if(b)
						for(int k = 0; k < 7; k ++)
							hc[x][y] = ch[x][y], x += c1[jj], y += c2[jj];
				}
			}
		}
	}
	for(int i = 0; i < n; i ++)
		cout << hc[i] << endl;
}

i,j为坐标;

jj为查找的方向,对应c1与c2;

k为第几个字母,对照ch1;

ch数组为输入数组,hc数组为输出数组;

E - 自然数的拆分问题

洛谷:P2404;

哈,7个数,打表秒了(不建议)

#include<bits/stdc++.h>
using namespace std;
int n;
int main(){
	cin >> n;
	if(n == 2){
		cout << "1+1" << endl;
	}else if(n == 3){
		cout << "1+1+1" << endl;
		cout << "1+2" << endl;
	}else if(n == 4){
		cout << "1+1+1+1" << endl;
		cout << "1+1+2" << endl;
		cout << "1+3" << endl;
		cout << "2+2" << endl;
	}else if(n == 5){
		cout << "1+1+1+1+1" << endl;
		cout << "1+1+1+2" << endl;
		cout << "1+1+3" << endl;
		cout << "1+2+2" << endl;
		cout << "1+4" << endl;
		cout << "2+3" << endl;
	}else if(n == 6){
		cout << "1+1+1+1+1+1" << endl;
		cout << "1+1+1+1+2" << endl;
		cout << "1+1+1+3" << endl;
		cout << "1+1+2+2" << endl;
		cout << "1+1+4" << endl;
		cout << "1+2+3" << endl;
		cout << "1+5" << endl;
		cout << "2+2+2" << endl;
		cout << "2+4" << endl;
		cout << "3+3" << endl;
	}else if(n == 7){
		cout << "1+1+1+1+1+1+1" << endl;
		cout << "1+1+1+1+1+2" << endl;
		cout << "1+1+1+1+3" << endl;
		cout << "1+1+1+2+2" << endl;
		cout << "1+1+1+4" << endl;
		cout << "1+1+2+3" << endl;
		cout << "1+1+5" << endl;
		cout << "1+2+2+2" << endl;
		cout << "1+2+4" << endl;
		cout << "1+3+3" << endl;
		cout << "1+6" << endl;
		cout << "2+2+3" << endl;
		cout << "2+5" << endl;
		cout << "3+4" << endl;
	}else{
		cout << "1+1+1+1+1+1+1+1" << endl;
		cout << "1+1+1+1+1+1+2" << endl;
		cout << "1+1+1+1+1+3" << endl;
		cout << "1+1+1+1+2+2" << endl;
		cout << "1+1+1+1+4" << endl;
		cout << "1+1+1+2+3" << endl;
		cout << "1+1+1+5" << endl;
		cout << "1+1+2+2+2" << endl;
		cout << "1+1+2+4" << endl;
		cout << "1+1+3+3" << endl;
		cout << "1+1+6" << endl;
		cout << "1+2+2+3" << endl;
		cout << "1+2+5" << endl;
		cout << "1+3+4" << endl;
		cout << "1+7" << endl;
		cout << "2+2+2+2" << endl;
		cout << "2+2+4" << endl;
		cout << "2+3+3" << endl;
		cout << "2+6" << endl;
		cout << "3+5" << endl;
		cout << "4+4" << endl;
	}
}

写完已经4/5的凌晨力QAQ;

标签:ch,int,18,dfs,2024,++,寒假作业,jj,res
From: https://blog.csdn.net/pezhzh/article/details/137265153

相关文章

  • Radium 行内样式在 React18 中不生效
    问题React17升级到18之后,行内样式借助Radium包实现hover和媒体查询,无法生效。npmiradium-S下载Radium依赖包App.jsimportRadiumfrom'radium'conststyleObj={width:100,height:100,backgroundColor:'#FAE',':hover':{backgro......
  • FL Studio 24.0.99.4077中文版Crack With Keygen {Latest 2024} Free Download
    FLStudio24.0.99.4077中文版是最新、最具影响力的音乐制作工具。它可以与所有类型的音乐一起工作,以产生伟大的音乐。它提供了一个相对简单且易于使用的集成开发环境(IDE)。这个完整的音乐工作站是由比利时公司ImageLine开发的。它的创新理念有助于初学者和专业人士创作、组织......
  • 《大模型面试宝典》(2024版) 正式发布!
    2022年11月底,OpenAI正式推出ChatGPT,不到两个月的时间,月活用户就突破1亿,成为史上增长最快的消费者应用。目前国内已发布的大模型超过200个,大模型的出现彻底改变了我们的生活和学习方式。现在只要你想从事AI相关的岗位,无论是计算机视觉(CV)、自然语言处理(NLP)、搜广推、......
  • 1.5 警惕和揭秘伪创新(1)《软件方法》2024.4更新
    DDD领域驱动设计批评文集做强化自测题获得“软件方法建模师”称号《软件方法》各章合集1.5警惕和揭秘伪创新初中数学里要学习全等三角形、相似三角形、SSS、SAS……,到了高中以后学了正弦定理、余弦定理等解三角形的知识……就不会再回去用初中的方法解题了。但是,不是所......
  • 2024-4-4 分块补题
    P3203[HNOI2010]弹飞绵羊记录每个位置跳出当前块所需要的步数和跳出的位置。从后往前统计#include<bits/stdc++.h>#definemaxn200100usingnamespacestd;intn,m,len;intpos[maxn],k[maxn];intnxt[maxn],stp[maxn];structfk{intl,r;}a[maxn];intread(){......
  • day18java学习打卡:类中属性的使用
    /* *类中属性的使用: *  *属性(成员变量) vs 局部变量 *1.相同点: * 1.1定义变量的格式:数据类型变量名=变量值; * 1.2先声明,后使用 * 1.3变量都有其对应的作用域 *  *  *2.不同点: * 2.1在类中声明的位置不同 *   属性:直接......
  • 2024年4月4号java学习
    继承减少编写重复的代码,提高代码的复用性,使用extends关键字用来表示继承一个类如果类和类有相同的特性,并且一个类是另一个类的一种那么就可以使用继承java中只支持单继承,但有多层继承所有的类都间接或者直接继承Object类子类能够继承父类的东西虚方法表中包含:非私有方法,非f......
  • 20240404
    T1洛谷P3436PRO-ProfessorSzu首先缩点。然后从所有没有入度的强连通分量开始dfs,进行dp,数一下每个点到终点有多少路径。要注意的是当且仅当一个点能够到达终点时才能够用来更新其他点的dp值。代码#include<iostream>#defineintlonglongusingnamespacestd;in......
  • C语言经典例题(18) --- 判断字母、三角形判断、衡量人体胖瘦程度、翻转金字塔图案、平
    1.判断是不是字母题目描述:KK想判断输入的字符是不是字母,请帮他编程实现。输入描述:多组输入,每一行输入一个字符。输出描述:针对每组输入,输出单独占一行,判断输入字符是否为字母,输出内容详见输出样例。输入:A6输出:Aisanalphabet.6isnotanalphabet......
  • 【放假第1天】采购季倒计时 2G 50/年,4G 618/3年 云服务器选购攻略 阿里云 腾讯云 京
    ​更新日期:4月4日(阿里云价格回调,京东云采购季持续进行)《最新对比表》已更新在文章头部—腾讯云文档,文章具有时效性,请以腾讯文档为准!https://docs.qq.com/document/DV0RCS0lGeHdMTFFV?tab=000003当前活动:采购季,各厂商活动已更新,适用于博客建站(2-4G)、小型游戏(4-8G)、大型游戏......