IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> The 14th Jilin Provincial Collegiate Programming Contest -> 正文阅读

[数据结构与算法]The 14th Jilin Provincial Collegiate Programming Contest

题目链接:The 14th Jilin Provincial Collegiate Programming Contest?

question:
Problem A. Chord

thought:
其实很简单,但是没有想仔细,要注意一些细节?

#include <bits/stdc++.h>
using namespace std;

inline int read(){
	int s=0,f=1;
	char ch=getchar();
	while(ch<'0'||ch>'9'){
		if(ch=='-') f=-1;
		ch=getchar();
	}
	while(ch>='0'&&ch<='9'){
		s=s*10+ch-'0';
		ch=getchar();
	}
	return s*f;
}
const int N = 1e5+7;
string s[20]={"C","C#","D","D#","E","F","F#","G","G#","A","A#","B"};
void solve(){
	string a,b,c;
	cin>>a>>b>>c;
	int id1,id2,id3;
	for(int i = 0; i <= 11; i ++)
	if(s[i]==a) id1=i;
	
	for(int i = 0; i <= 11; i ++) 
	if(s[i]==b) id2=i;
	
	for(int i = 0; i <= 11; i ++)
	if(s[i]==c) id3=i;
	
	
	if((id2-id1+12)%12==4&&(id3-id2+12)%12==3) 
	puts("Major triad");
	else if((id2-id1+12)%12==3&&(id3-id2+12)%12==4)
	puts("Minor triad");
	else puts("Dissonance");
}
int main(){
	ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
	int T;cin>>T;
	while(T--) solve();
	return 0;
}

question:

Problem C. String Game

找字符串中是否出现另一个字符串,计算出现了几次

thought:

动态规划?

#include <bits/stdc++.h>
using namespace std;
const int mod = 1e9 + 7;
const int N = 1e3 + 10;
int dp[N];
int main() {
	string a, b;
	while (cin >> a >> b) {
		memset(dp, 0, sizeof dp);
		int lena = a.size();
		int lenb = b.size();
		dp[0] = 1;
		for(int i = 0; i < lena; i ++ ) {
			for (int j = lenb; j >= 1; j -- ) {
				if (a[i] == b[j - 1]) {
					dp[j] += dp[j - 1];
					dp[j] %= mod;
				}
			}
		}
		cout << dp[lenb] << endl;
	}
	return 0;
}

?question:

Problem E. Shorten the Array

改变数组的长度然后输出最短长度

thought:

先找出数组中的最小元素,然后遍历数组看是否存在一个不是x的倍数的数,如果存在就代表存在 y 满足 gcd( x , y ) ≠ x.那么答案就是 1。

如果不存在,那么答案就是 num(x) / 2 (向上取整)。

#include <bits/stdc++.h>
using namespace std;
const int N = 1e6 + 10;
int a[N];
int main(){
	int t;
	scanf("%d", &t);
	while (t -- ) {
		int n;
		scanf("%d", &n);
		for (int i = 1; i <= n; i ++ ) scanf("%d", a + i);
		int mi = a[1];
		for (int i = 1; i <= n; i ++ ) mi = min(mi, a[i]);
		int f = 0, cnt = 0;
		for (int i = 1; i <= n; i ++ ) {
			if (a[i] == mi) cnt ++;
			if (a[i] % mi) f = 1;
		}
		if (f) cout << 1 << endl;
		else cout << (cnt + 1) / 2 << endl;
	}
	return 0;	
}

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2021-08-16 11:59:24  更:2021-08-16 12:02:16 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 21:52:12-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码