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 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> Daily Practice 5th:Educational Codeforces Round 120 (Rated for Div. 2) -> 正文阅读

[数据结构与算法]Daily Practice 5th:Educational Codeforces Round 120 (Rated for Div. 2)

VP*5;

A. Construct a Rectangle

给出三根木棒,任意断开一根,要满足所得到的木棒长度都是整数,且四根木棒可以组成一个矩形,问是否可以按照要求组成这样一个矩形。

思路: 分情况讨论,我们可以知道只能断开长度最长或者长度最短的一根,分情况讨论即可。

AC Code:

#include <bits/stdc++.h>
#pragma GCC optimize(2)

template <typename T>
inline void read(T &x) {
	x = 0;
	int f = 1;
	char ch = getchar();
	while (!isdigit(ch)) {
		if (ch == '-')
			f = -1;
		ch = getchar();
	}
	while (isdigit(ch)) {
		x = x * 10 + ch - '0', ch = getchar();
	}
	x *= f;
}

template <typename T>
void write(T x) {
	if (x < 0)
		putchar('-'), x = -x;
	if (x > 9)
		print(x / 10);
	putchar(x % 10 + '0');
}

#define INF 0x3f3f3f3f
typedef long long ll;
const double PI = acos(-1);
const double eps = 1e-6;
const int mod = 1e9 + 7;
const int N = 1e5 + 5;
int t, a[4];

int main() {
//	freopen("test.in","r",stdin);
//  freopen("output.in", "w", stdout);
	std::cin >> t;
	while (t--) {
		std::cin >> a[1] >> a[2] >> a[3];
		std::sort(a + 1, a + 1 + 3);
		if (a[3] == a[1] + a[2])
			std::cout << "YES" << '\n';
		else if (a[2] == a[3] && a[1] % 2 == 0)
			std::cout << "YES" << '\n';
		else if (a[2] == a[1] && a[3] % 2 == 0)
			std::cout << "YES" << '\n';
		else
			std::cout << "NO" << '\n';
	}
	return 0;
}

B. Berland Music

一开始给出一个含有1~n的数列,现在给出一个01子串,1对应的原数字一定要大于0对应的,问怎样构造使得花费最少,花费是指一个数到赋值后的差。

思路:将0对应的数字拿出来,1对应的拿出来,0对应的数字按大小赋值成1~cnt,1对应的赋值成cnt+1~n,注意代码写法。

AC Code:

#include <bits/stdc++.h>
#pragma GCC optimize(2)

template <typename T>
inline void read(T &x) {
	x = 0;
	int f = 1;
	char ch = getchar();
	while (!isdigit(ch)) {
		if (ch == '-')
			f = -1;
		ch = getchar();
	}
	while (isdigit(ch)) {
		x = x * 10 + ch - '0', ch = getchar();
	}
	x *= f;
}

template <typename T>
void write(T x) {
	if (x < 0)
		putchar('-'), x = -x;
	if (x > 9)
		print(x / 10);
	putchar(x % 10 + '0');
}

#define INF 0x3f3f3f3f
typedef long long ll;
const double PI = acos(-1);
const double eps = 1e-6;
const int mod = 1e9 + 7;
const int N = 2e5 + 5;
int t, n, a[N];
std::string s;

struct node {
	int id, neww;
} c[N];

struct node1 {
	int id, neww, pre;
} e[N];

struct node2 {
	int id, neww, pre;
} q[N];

bool cmp(node a, node b) {
	if (a.id < b.id)
		return true;
	else
		return false;
}

bool cmp1(node1 a, node1 b) {
	if (a.pre < b.pre)
		return true;
	else
		return false;
}

bool cmp2(node2 a, node2 b) {
	if (a.pre < b.pre)
		return true;
	else
		return false;
}

int main() {
//	freopen("test.in","r",stdin);
//  freopen("output.in", "w", stdout);
	std::cin >> t;
	while (t--) {
		std::cin >> n;
		for (int i = 0; i < n; i++) {
			std::cin >> a[i];
		}
		std::cin >> s;
		int len = s.length();
		int cnt = 0, tot = 0, tt = 0;
		for (int i = 0; i < len; i++) {
			if (s[i] == '0') {
				e[++cnt].id = i;
				e[cnt].pre = a[i];
			} else {
				q[++tot].id = i;
				q[tot].pre = a[i];
			}
		}
		if (cnt == 0 || cnt == n) {
			for (int i = 0; i < n; i++) {
				std::cout << a[i] << " \n"[i == n - 1];
			}
			continue;
		}
		std::sort(e + 1, e + 1 + cnt, cmp1);
		std::sort(q + 1, q + 1 + tot, cmp2);
		for (int i = 1; i <= cnt; i++) {
			e[i].neww = i;
			c[++tt].id = e[i].id;
			c[tt].neww = e[i].neww;
		}
		for (int i = 1; i <= tot; i++) {
			q[i].neww = i + cnt;
			c[++tt].id = q[i].id;
			c[tt].neww = q[i].neww;
		}
		std::sort(c + 1, c + 1 + tt, cmp);
		for (int i = 1; i <= tt; i++) {
			std::cout << c[i].neww << " \n"[i == tt];
		}
	}
	return 0;
}

?C. Set or Decrease

给出一个数组和一个数字k,问能够操作的最少次数使数组所有元素和小于等于k。操作是指:1、选择一个数,将它减小1;2、选择两个数,将其中一个数值赋值给另一个。

思路:若是原数组所有元素和已经小于k,则无需任何操作;若大于k,首先最高效的的方法是令较大值等于较小值,所以要先排序,所以需要进行的操作就是对最小值进行p次1操作,对倒数q个数进行q次2操作,令它们等于改变后的最小值,我们可以先固定q的次数,寻找最小的p操作,从而寻找最小的p+q的值。 参考

AC Code:

#include <bits/stdc++.h>
#pragma GCC optimize(2)

template <typename T>
inline void read(T &x) {
	x = 0;
	int f = 1;
	char ch = getchar();
	while (!isdigit(ch)) {
		if (ch == '-')
			f = -1;
		ch = getchar();
	}
	while (isdigit(ch)) {
		x = x * 10 + ch - '0', ch = getchar();
	}
	x *= f;
}

template <typename T>
void write(T x) {
	if (x < 0)
		putchar('-'), x = -x;
	if (x > 9)
		print(x / 10);
	putchar(x % 10 + '0');
}

#define INF 0x3f3f3f3f
typedef long long ll;
const double PI = acos(-1);
const double eps = 1e-6;
const int mod = 1e9 + 7;
const int N =  1e6 + 5;
ll t, n, a[N];
ll k;

int main() {
//	freopen("test.in","r",stdin);
//  freopen("output.in", "w", stdout);
	std::ios::sync_with_stdio(false);
	std::cin.tie(0);
	std::cout.tie(0);
	std::cin >> t;
	while (t--) {
		std::cin >> n >> k;
		ll sum = 0;
		for (ll i = 1; i <= n; i++) {
			std::cin >> a[i];
			sum += a[i];
		}
		if (sum <= k) {
			std::cout << 0 << '\n';
			continue;
		}
		std::sort(a + 1, a + 1 + n);
		ll ans = sum - k, q = 1;
		sum -= a[1];
		for (ll i = n; i >= 2; i--) {
			q++;
			sum -= a[i];
			ll p;
			if (k - sum >= 0)//若小于k,若要达到正好的减少sum-k,对最小值需要增加,
				p = (k - sum) / q;//但是显然不需要,所以有后面(1)处的操作
			else
				p = (k - sum - q + 1) / q;//若仍大于k,则需要对第一个数进行若干次减小操作
			if (p > a[1])//(1)
				p = a[1];
			ans = std::min(ans, (a[1] - p) + q - 1);
		}
		std::cout << ans << '\n';
	}
	return 0;
}

若有错误请指教orzorz

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-04-06 23:27:37  更:2022-04-06 23:30:31 
 
开发: 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/26 9:58:42-

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