AtCoder Beginner Contest 383

news2024/12/12 15:59:19

C - Humidifier 3

Description

一个 h × w h \times w h×w 的网格,每个格子可能是墙、空地或者城堡。
一个格子是好的,当且仅当从至少一个城堡出发,走不超过 d d d 步能到达。(只能上下左右走,不能穿墙),求好格子的数量。

Solution

从每一个城堡出发进行 bfs,对所有 d 步内能走到的点进行标记。
为了效率,可以把所有城堡丢入队列中,一次搜完。

Code

// Problem: C - Humidifier 3
// Contest: AtCoder - Daiwa Securities Co. Ltd. Programming Contest 2024(AtCoder Beginner Contest 383)
// URL: https://atcoder.jp/contests/abc383/tasks/abc383_c
// Memory Limit: 1024 MB
// Time Limit: 2000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

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

using i64 = long long;
using ui64 = unsigned long long;
using i128 = __int128;
using ui128 = unsigned __int128;
using f4 = float;
using f8 = double;
using f16 = long double;

template<class T>
bool chmax(T &a, const T &b){
	if(a < b){ a = b; return true; }
	return false;
}

template<class T>
bool chmin(T &a, const T &b){
	if(a > b){ a = b; return true; }
	return false;
}

const int dx[] = {0, -1, 0, 1}, dy[] = {1, 0, -1, 0};

signed main() {
	ios::sync_with_stdio(0);
	cin.tie(0), cout.tie(0);
	
	int h, w, d;
	cin >> h >> w >> d;
	
	vector<string> a(h);
	for (int i = 0; i < h; i++) {
	    cin >> a[i];
	}
	
	queue<tuple<int, int, int>> que;
	vector visit(h, vector<bool>(w, false));
	
	auto check = [&](int x, int y) {
	    return x >= 0 && x < h && y >= 0 && y < w && a[x][y] != '#' && !visit[x][y];
	};
	
	auto enque = [&](int x, int y, int step) {
	    if (check(x, y)) {
	        que.emplace(x, y, step);
	        visit[x][y] = true;
	    }
	};
	
	for (int i = 0; i < h; i++) {
	    for (int j = 0; j < w; j++) {
	        if (a[i][j] == 'H') {
	            enque(i, j, 0);
	        }
	    }
	}
	
	while (!que.empty()) {
	    auto [x, y, step] = que.front();
	    que.pop();
	    
	    if (step >= d) continue;
	    for (int i = 0; i < 4; i++) {
	        int nx = x + dx[i], ny = y + dy[i];
	        enque(nx, ny, step + 1);
	    }
	}
	
	int ans = 0;
	for (int i = 0; i < h; i++) {
	    ans += accumulate(visit[i].begin(), visit[i].end(), 0);
	}
	cout << ans;
	
	return 0;
}

D - 9 Divisors

Description

给定 n n n,求 [ 1 , n ] [1, n] [1,n]正好 9 9 9 个因数的数的数量。
1 ≤ n ≤ 1 0 12 1 \le n \le 10^{12} 1n1012

Solution

因数个数定理知,满足条件的数 t t t只有两种可能:

  1. t = p 8 t=p^8 t=p8
  2. t = p 1 2 × p 2 2 t=p_1^2 \times p_2^2 t=p12×p22

显然 p p p 一定 ≤ n \le \sqrt{n} n ,所以只需筛出 n \sqrt{n} n 内的质数即可。
显然答案远小于 n \sqrt{n} n (看大样例也知道),因此枚举即可。
注意及时跳出循环(特别是情况2,否则会 TLE

Code

// Problem: D - 9 Divisors
// Contest: AtCoder - Daiwa Securities Co. Ltd. Programming Contest 2024(AtCoder Beginner Contest 383)
// URL: https://atcoder.jp/contests/abc383/tasks/abc383_d
// Memory Limit: 1024 MB
// Time Limit: 2000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

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

using i64 = long long;
using ui64 = unsigned long long;
using i128 = __int128;
using ui128 = unsigned __int128;
using f4 = float;
using f8 = double;
using f16 = long double;

template<class T>
bool chmax(T &a, const T &b){
	if(a < b){ a = b; return true; }
	return false;
}

template<class T>
bool chmin(T &a, const T &b){
	if(a > b){ a = b; return true; }
	return false;
}


signed main() {
	ios::sync_with_stdio(0);
	cin.tie(0), cout.tie(0);
	
	i64 n;
	cin >> n;
	
	vector<bool> isp;
	vector<int> primes;
	
	auto sieve = [&](int n) {
	    isp.assign(n + 1, true);
	    primes.clear();
	    
	    isp[0] = isp[1] = false;
	    for (int i = 2; i <= n; i++) {
	        if (isp[i]) {
	            primes.push_back(i);
	            for (int j = i + i; j <= n; j += i) {
	                isp[j] = false;
	            }
	        }
	    }
	};
	
	int m = sqrt(n);
	sieve(m);
	
	int ans = 0;
	for (auto p : primes) {
	    if (1LL * p * p * p * p <= m) {
	        ans++;
	    }
	    else {
	        break;
	    }
	}
	
	for (int i = 0; i < primes.size(); i++) {
	    for (int j = i + 1; j < primes.size() && 1LL * primes[i] * primes[j] <= m; j++) {
	        ans++;
	    }
	}
	
	cout << ans;
	
	return 0;
}

E - Sum of Max Matching

Description

定义 f ( s , t ) f(s,t) f(s,t) s , t s,t s,t 间的最小瓶颈路。(路径上最大边权的最小值)。
给定 n n n m m m 边的无向图和两个序列 a = ( a 1 , a 2 , ⋯   , a k ) a=(a_1,a_2,\cdots,a_k) a=(a1,a2,,ak) b = ( b 1 , b 2 , ⋯   , b k ) b=(b_1,b_2,\cdots,b_k) b=(b1,b2,,bk),重排 b b b 使得 ∑ i = 1 k f ( a i , b i ) \displaystyle \sum_{i=1}^k f(a_i,b_i) i=1kf(ai,bi) 最小。

Solution

关于最小瓶颈路,有一个结论:两点间的最小瓶颈路,就是最小生成树上两点间的最大边权。

据此,可以得到一个思路:
首先将每个点 u u u 看成一个集合,其中有 c n t a u cnta_u cntau 个红点和 c n t b u cntb_u cntbu 个蓝点。
然后仿照最小生成树的做法,在合并集合时,将红蓝点对配对消去,答案加上消去的点对数 × w \times w ×w
由上面结论可知,这个方法是正确的。

Code

// Problem: E - Sum of Max Matching
// Contest: AtCoder - Daiwa Securities Co. Ltd. Programming Contest 2024(AtCoder Beginner Contest 383)
// URL: https://atcoder.jp/contests/abc383/tasks/abc383_e
// Memory Limit: 1024 MB
// Time Limit: 2500 ms
// 
// Powered by CP Editor (https://cpeditor.org)

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

using i64 = long long;
using ui64 = unsigned long long;
using i128 = __int128;
using ui128 = unsigned __int128;
using f4 = float;
using f8 = double;
using f16 = long double;

template<class T>
bool chmax(T &a, const T &b){
	if(a < b){ a = b; return true; }
	return false;
}

template<class T>
bool chmin(T &a, const T &b){
	if(a > b){ a = b; return true; }
	return false;
}


signed main() {
	ios::sync_with_stdio(0);
	cin.tie(0), cout.tie(0);
	
	int n, m, k;
	cin >> n >> m >> k;
	
	vector<array<int, 3>> edges(m);
	for (auto &[u, v, w] : edges) {
	    cin >> u >> v >> w;
	    u--, v--;
	}
	
	sort(edges.begin(), edges.end(), 
	    [](const array<int, 3> &a, const array<int, 3> &b) {
	        return a[2] < b[2];
	});
	
	vector<int> ca(n), cb(n);
	for (int i = 0, x; i < k; i++) {
	    cin >> x;
	    x--;
	    ca[x]++;
	}
	for (int i = 0, x; i < k; i++) {
	    cin >> x;
	    x--;
	    cb[x]++;
	}
	
	vector<int> p(n);
	iota(p.begin(), p.end(), 0);
	
	auto find = [&](auto &&self, int x) -> int {
	    if (x != p[x]) p[x] = self(self, p[x]);
	    return p[x];
	};
	
	i64 ans = 0;
	for (auto [u, v, w] : edges) {
	    int x = find(find, u), y = find(find, v);
	    if (x == y) {
	        continue;
	    }
	    
	    ca[x] += ca[y];
	    cb[x] += cb[y];
	    int t = min(ca[x], cb[x]);
	    ans += 1LL * t * w;
	    
	    ca[x] -= t;
	    cb[x] -= t;
	    p[y] = x;
	}
	
	cout << ans;
	
	return 0;
}

F - Diversity

Description

n n n 个物品,第 i i i 个的价格为 p i p_i pi,价值为 u i u_i ui,颜色为 c i c_i ci
定义一种选择的价值为 ∑ u + t × k \sum u+t \times k u+t×k,其中 t t t 是所选物品的不同颜色种类数, k k k 为给定常数。
你需要选择一些物品(可以不选),在所选物品总价格不超过 x x x 的前提下,求最大价值。

Solution

容易看出是 0-1背包 的变式,首先按颜色对物品分组。
d p i , j dp_{i,j} dpi,j 为考虑前 i i i颜色,总价格在 j j j 以内的最大价值。
对于第 i i i 个颜色,额外考虑从上一个颜色,即 d p i − 1 , j − p + u + k dp_{i-1,j-p}+u+k dpi1,jp+u+k 转移过来即可。
注意要跳过不存在的颜色。

Code

滚掉了第一维。

// Problem: F - Diversity
// Contest: AtCoder - Daiwa Securities Co. Ltd. Programming Contest 2024(AtCoder Beginner Contest 383)
// URL: https://atcoder.jp/contests/abc383/tasks/abc383_f
// Memory Limit: 1024 MB
// Time Limit: 2500 ms
// 
// Powered by CP Editor (https://cpeditor.org)

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

using i64 = long long;
using ui64 = unsigned long long;
using i128 = __int128;
using ui128 = unsigned __int128;
using f4 = float;
using f8 = double;
using f16 = long double;

template<class T>
bool chmax(T &a, const T &b){
	if(a < b){ a = b; return true; }
	return false;
}

template<class T>
bool chmin(T &a, const T &b){
	if(a > b){ a = b; return true; }
	return false;
}

const i64 inf = 1e18;

signed main() {
	ios::sync_with_stdio(0);
	cin.tie(0), cout.tie(0);
	
	int n, v, k;
	cin >> n >> v >> k;
	
	vector<vector<pair<int, int>>> adj(n);
	for (int i = 0, p, u, c; i < n; i++) {
	    cin >> p >> u >> c;
	    c--;
	    adj[c].emplace_back(p, u);
	}
	
	vector<i64> dp(v + 1, -inf);
	dp[0] = 0;
	
	for (int c = 0; c < n; c++) {
	    if (adj[c].empty()) {
	        continue;
	    }
	    
	    vector<i64> dp2 = dp;
	    for (auto [p, u] : adj[c]) {
	        for (int i = v; i >= p; i--) {
	            dp2[i] = max({dp2[i], dp2[i - p] + u, dp[i - p] + u + k});
	        }
	    }
	    dp.swap(dp2);
	}
	
	cout << *max_element(dp.begin(), dp.end());
	
	return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/2258313.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

【Web】2023安洵杯第六届网络安全挑战赛 WP

目录 Whats my name easy_unserialize signal Swagger docs 赛题链接&#xff1a;GitHub - D0g3-Lab/i-SOON_CTF_2023: 2023 第六届安洵杯 题目环境/源码 Whats my name 第一段正则用于匹配以 include 结尾的字符串&#xff0c;并且在 include 之前&#xff0c;可以有任…

大模型简单实践

大模型简单实践 最近参加了Datawhale AI冬令营&#xff08;第一期&#xff09;的活动 网站链接 手把手教学&#xff0c;借助Chat-嬛嬛 搭上讯飞星辰MaaS平台&#xff0c;快速训练处一个可以自由聊天的对话机器人。

Linux的基本功能和命令

Linux的基本功能和命令 切换目录 pwd 查询当前目录地址 cd /xxx/xxx 转到目录 cd …/ 回到上一级目录 cd ./ 当前目录 创建、删除文件/文件夹 创建文件\文件夹 touch filename 创建空文件mkdir 创建目录 mkdir -p 目标目录存在也不报错mkdir -p xxx/xxx 递归创建目录…

LLC谐振变换器的工作模态分析

概述 LLC谐振变换器在传统串联LC和并联LC谐振变换器的基础之上进行改进&#xff0c;既有LC串联谐振变换器谐振电容所起到的隔直作用和谐振网络电流随负载轻重而变化&#xff0c;轻载时效率较高的优点。同时又有LC并联谐振变化器可以在空载条件下&#xff0c;对滤波电容的电流脉…

Goby AI 2.0 自动化编写 EXP | Mitel MiCollab 企业协作平台 npm-pwg 任意文件读取漏洞(CVE-2024-41713)

漏洞名称&#xff1a;Mitel MiCollab 企业协作平台 npm-pwg 任意文件读取漏洞(CVE-2024-41713) English Name&#xff1a;Mitel MiCollab /npm-pwg File Read Vulnerability (CVE-2024-41713) CVSS core: 6.8 漏洞描述&#xff1a; Mitel MiCollab 是加拿大 Mitel 公司推出…

视频安防监控平台:Liveweb视频监控管理云平台方案

LiveWeb是深圳市好游科技有限公司开发的一套综合视频汇聚管理平台&#xff0c;可提供多协议&#xff08;RTSP/RTMP/GB28181/海康Ehome/大华&#xff0c;海康SDK等&#xff09;的视频设备接入&#xff0c;支持GB/T28181上下级联&#xff0c;RTSP\RTMP转GB/T28181&#xff0c;云台…

ip地址暴露了怎么办?手机怎样改ip地址以保障安全

在数字化时代,IP地址作为我们连接互联网的“身份证”,其安全性至关重要。然而,有时我们的IP地址可能会因各种原因暴露,从而引发隐私泄露、网络攻击等风险。本文将为您详细解析IP地址暴露后的应对措施,特别是针对手机用户,提供实用的更改IP地址方法,帮助您有效保障网络安…

组合分支预测

前言 这篇文章讨论了几种分支预测的实现方式。具体内容如下&#xff1a; 内容 introduction 这篇文章只考虑预测分支跳转方向&#xff0c;不讨论跳转的目标地址。 Bimodal Branch Prediction 分支行为的特点&#xff1a;大多数程序中的分支指令并不是随机的&#xff0c;通…

爬虫基础之代理的基本原理

在做爬虫的过程中经常会遇到一种情况&#xff0c;就是爬虫最初是正常运行、正常抓取数据的&#xff0c;一切看起来都是那么美好&#xff0c;然而一杯茶的工夫就出现了错误&#xff0c;例如 403 Forbidden&#xff0c;这时打开网页一看&#xff0c;可能会看到“您的IP访问频率太…

数据结构——对顶堆

对顶堆 由一个大根堆和一个小根堆组成&#xff0c;小根堆里面的数永远比大根堆里面的数要大 用途&#xff1a;用于动态维护区间内第k大的数&#xff0c;要比线段树和动态平衡树写起来更简单 比如说我们要维护第k大的数&#xff0c;那么我们肯定是将前k大的数放进小根堆&#…

设计模式之原型模式:深入浅出讲解对象克隆

~犬&#x1f4f0;余~ “我欲贱而贵&#xff0c;愚而智&#xff0c;贫而富&#xff0c;可乎&#xff1f; 曰&#xff1a;其唯学乎” 原型模式概述 在我们的日常生活中&#xff0c;经常会遇到"复制"这样的场景。比如我们在准备文件时&#xff0c;常常会复印一份原件&a…

Elasticsearch Serverless 中的数据流自动分片

作者&#xff1a;来自 Elastic Andrei Dan 在 Elastic Cloud Serverless 中&#xff0c;我们根据索引负载自动为数据流配置最佳分片数量&#xff0c;从而使用户无需摆弄分片。 传统上&#xff0c;用户会更改数据流的分片配置&#xff0c;以处理各种工作负载并充分利用可用资源。…

【Golang】Go语言编程思想(六):Channel,第四节,Select

使用 Select 如果此时我们有多个 channel&#xff0c;我们想从多个 channel 接收数据&#xff0c;谁来的快先输出谁&#xff0c;此时应该怎么做呢&#xff1f;答案是使用 select&#xff1a; package mainimport "fmt"func main() {var c1, c2 chan int // c1 and …

MindSearch深度解析实践

任务要求&#xff1a;在 官方的MindSearch页面 复制Spaces应用到自己的Spaces下&#xff0c;Space 名称中需要包含 MindSearch 关键词&#xff0c;请在必要的步骤以及成功的对话测试结果当中 1.在github codespace中配置环境 conda create -n mindsearch python3.10 -y conda…

【PyQt5教程 二】Qt Designer 信号与槽的使用方法及PyQt5基本小部件说明

目录 一、信号与槽机制&#xff1a; 二、信号与槽使用方法&#xff1a; &#xff08;1&#xff09;使用Qt Designer 的信号与槽编辑器&#xff1a; &#xff08;2&#xff09;使用固定语法直接建立信号槽连接&#xff1a; 三、PyQt小部件及其触发信号&#xff1a; &#x…

基于PHP课堂签到系统的设计与实现

摘 要 随着教育业的迅速发展和学生人数的不断增加&#xff0c;导致在班级登记制度中传统的“点到”方式不能适应学校的实际需要。从而需要设计一个好的课堂签到系统将会对课堂签到管理工作带来事半功倍的效果。文章着重介绍了基于实践应用的班级签到系统的开发流程&#xff0c…

CSS学习记录11

CSS布局 - display属性 display属性是用于控制布局的最终要的CSS属性。display 属性规定是否/如何显示元素。每个HTML元素都有一个默认的display值&#xff0c;具体取决于它的元素类型。大多数元素的默认display值为block 或 inline。 块级元素&#xff08;block element&…

高效利用资源:分布式有状态服务的高可靠性设计

在分布式系统设计中&#xff0c;实现有状态服务的高可靠性通常采用主备切换的方式。当主服务停止工作时&#xff0c;备服务接管任务&#xff0c;例如通过Keepalive实现VIP的切换以保证可用性。然而&#xff0c;这种方式存在资源浪费的问题&#xff0c;因为备服务始终处于空转状…

重生之我在异世界学智力题(2)

大家好&#xff0c;这里是小编的博客频道 小编的博客&#xff1a;就爱学编程 很高兴在CSDN这个大家庭与大家相识&#xff0c;希望能在这里与大家共同进步&#xff0c;共同收获更好的自己&#xff01;&#xff01;&#xff01; 本文目录 引言智力题&#xff1a;逃离孤岛智力题&a…

论文浅尝 | SAC-KG:利用大语言模型作为领域知识图谱熟练的自动化构造器(ACL2024)...

笔记整理&#xff1a;杜超超&#xff0c;天津大学硕士&#xff0c;研究方向为自然语言处理、大语言模型 论文链接&#xff1a;https://aclanthology.org/2024.acl-long.238/ 发表会议&#xff1a;ACL 2024 1. 动机 知识图谱&#xff08;KG&#xff09;在各个专业领域的知识密集…