Atcoder Beginner Contest351 A-E Solution题解

news2024/11/19 6:14:46

文章目录

  • [A - The bottom of the ninth](https://atcoder.jp/contests/abc351/tasks/abc351_a)
  • [B - Spot the Difference ](https://atcoder.jp/contests/abc351/tasks/abc351_b)
  • [D - Grid and Magnet](https://atcoder.jp/contests/abc351/tasks/abc351_d)
  • E

Note:省略模板代码,模版代码在末尾

A - The bottom of the ninth

题目:
给两个序列A和B,求B总和比A总和大时需要加上的最小值

思路:
答案=A总和-B总和+1

static void solve() throws IOException {
    int[] a = pIntArray(0);
    int[] b =pIntArray(0);
    int acnt = 0, bcnt = 0;
    for (int i = 0; i < a.length;  i++) {
        acnt += a[i];
    }
    for (int i = 0; i < b.length; i ++) {
        bcnt += b[i];
    }
    out.println(acnt - bcnt + 1);
}

B - Spot the Difference

题目:
给两个仅包含小写字母的NxN矩阵,找出唯一不同字母的下标对

思路:
模拟

static void solve() throws IOException {
    int n = pInt(in.readLine());
    String[] a = new String[n], b = new String[n];
    for (int i = 0; i < n; i++) {
        a[i] = in.readLine();
    }
    for (int i = 0; i < n; i++) {
        b[i] = in.readLine();
    }
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            if (a[i].charAt(j) != b[i].charAt(j)) {
                out.println(i + 1 + " " + (j + 1) );
                return;
            }
        }
    }
}

C - Merge the balls

题目:
给一个空序列和N个球,第i个球的大小为 2 A i 2^{A_i} 2Ai;执行N次操作,在第i次操作时将第i个球加入到序列的最右边,然后重复以下步骤:当序列有两个及以上的球且最右边的两个球大小相同时,移去这两个球,并加入一个球,其大小为移除的球大小的总和,直到不能执行该步骤为止;

求执行完N次操作后序列还有多少个球

思路:
模拟

static void solve() throws IOException {
    int n = pInt(in.readLine());
    long[] balls = pLongArray(1);
    long[] t = new long[n + 1];
    int hh = 0;
    for (int i = 1; i <= n; i ++) {
        t[++ hh] = balls[i];
        while (hh > 1 && t[hh] == t[hh - 1]) {
            t[hh - 1] += 1;
            hh -= 1;
        }
    }
    out.println(hh);
}

D - Grid and Magnet

题目:
一个HxW的矩阵,某些格子里面会有磁铁,用 # 表示,其余格子为空,用. 表示;
如果在一个有磁铁的格子旁边,则无法继续移动;
问在这个矩阵里面的某个点出发能够移动的最大单元格数量;

思路:
实际上是求最大的连通块的格子数量,但连通块中边缘是一些磁铁,那么可以标记一下磁铁旁边的空单元格,当走到该种单元格时无法继续移动;
剩下的只需要用 BFS 来求连通块的大小即可;

static final int EMPTY = 0;
static final int MAGNET = 1;
static final int STICK = 2;
static final int[] d = new int[] {0, -1, 0, 1, 0};
static int bfs(int h, int w, int sx, int sy, int[][] vis) {
    Queue<int[]> q = new LinkedList<>();
    q.offer(new int[] {sx, sy});
    final int CURRENT_VISITED = 1010 * (sx + 1) + sy;
    vis[sx][sy] = CURRENT_VISITED;
    int ans = 0;
    while (!q.isEmpty()) {
        int[] u = q.poll();
        int x = u[0], y = u[1];
        ans ++;
        for (int i = 0; i < 4; i ++) {
            int dx = x + d[i], dy = y + d[i + 1];
            if (dx < 0 || dx >= h || dy < 0 || dy >= w || vis[dx][dy] == MAGNET || vis[dx][dy] == CURRENT_VISITED) continue;
            if (vis[dx][dy] == EMPTY) {
                q.offer(new int[] {dx, dy});
                vis[dx][dy] = CURRENT_VISITED;
            } else if (vis[dx][dy] != MAGNET && vis[dx][dy] != CURRENT_VISITED) {
                ans ++;
                vis[dx][dy] = CURRENT_VISITED;
            }
        }
    }
    return ans;
}
static void solve() throws IOException {
    String[] ins = pStringArray();
    int h = pInt(ins[0]), w = pInt(ins[1]);
    char[][] map = new char[h][w];
    int[][] vis = new int[h][w];
    for (int i = 0; i < h; i ++) {
        char[] t = in.readLine().toCharArray();
        System.arraycopy(t, 0, map[i], 0, w);
        for (int j = 0; j < w; j ++) {
            if (map[i][j] == '#') {
                vis[i][j] = MAGNET;
                for (int k = 0; k < 4; k++) {
                    int dx = i + d[k], dy = j + d[k + 1];
                    if (dx < 0 || dx >= h || dy < 0 || dy >= w) continue;
                    if (vis[dx][dy] == EMPTY) {
                        vis[dx][dy] = STICK;
                    }
                }
            }
        }
    }
    int ans = 1;
    for (int i =  0; i < h; i ++) {
        for (int j = 0; j < w; j ++) {
            if (vis[i][j] == EMPTY) {
                ans = Math.max(ans, bfs(h, w, i, j, vis));
            }
        }
    }
    out.println(ans);
}

E

题目:
在二维坐标平面上有 N 个点,兔子只能走对角线,计算AB两个点之间的距离 d i s t ( P A , P B ) dist(P_A, P_B) dist(PA,PB) 为:兔子从A点开始走对角线,到达B点的最小次数;求 ∑ i = 1 N − 1 ∑ j = i + 1 N d i s t ( P i , P j ) \sum^{N-1}_{i=1}\sum^{N}_{j=i + 1} dist(P_i, P_j) i=1N1j=i+1Ndist(Pi,Pj)

思路:

找规律,如下图,兔子从A点开始走,那么红色路线上的点都是可以到达的,注意到,可达点的坐标 ( x , y ) (x,y) (x,y) 相加之后与起点A的坐标相加后模2同余,那么可以对此进行分类;
在这里插入图片描述
如何进行计算距离呢?
将二维坐标平面旋转45度(坐标可以变换为: x ′ = x + y , y ′ = x − y x'=x+y, y'=x-y x=x+y,y=xy),兔子从走对角线就变成了上下左右走,两个点的距离就变成了水平方向和竖直方向上的距离了;
在这里插入图片描述

题目数据量是2e5,不可能两重循环来计算两个点的距离,这样会超时;
我们可以将x轴和y轴分开来计算:比如上面的A、B、C点

  • 先计算x轴的,A到B的距离为1,B到C的距离为1,因为C点在A点的右边,那么A到C的距离为1+1=2
  • 计算y轴的,A到B的距离为1

总的值就是3
需要注意的是,需要对转换后的x轴和y轴坐标排序,保证可以根据前面计算的距离来推出当前的距离(比如上面的A到C点)

static void solve() throws IOException {
    int n = pInt(in.readLine());
    List<Integer>[] px = new ArrayList[2];
    List<Integer>[] py = new ArrayList[2];
    for (int i = 0; i < 2; i ++) {
        px[i] = new ArrayList<>();
        py[i] = new ArrayList<>();
    }
    for (int i =0 ; i < n; i ++) {
        String[] ins = pStringArray();
        int x = pInt(ins[0]), y = pInt(ins[1]);
        int t = Math.abs(x + y) % 2;
        // 根据取模的结果分别拆分x轴和y轴
        px[t].add( x - y);
        py[t].add(x + y);
    }
    long ans = 0;
    for (int i = 0; i < 2; i ++) {
    	// 排序,保证坐标小的在前面
        px[i].sort(Comparator.comparingInt(a -> a));
        py[i].sort(Comparator.comparingInt(a -> a));
        int size = px[i].size();
        long sum1 = 0, sum2 = 0;
        for (int j = 0; j < size; j ++) {
        	// 当前点到前面其他点位置的距离
            ans += (long) j * (px[i].get(j) + py[i].get(j)) - sum1 - sum2;
            sum1 += px[i].get(j);
            sum2 += py[i].get(j);
        }
    }
    // 要求的值是 0->N-1, i+1->N-1 所以除以2
    out.println(ans / 2);
}

模版代码:

import java.io.*;
import java.nio.file.Files;
import java.nio.file.Paths;

public class Example {

    static void solve() throws IOException {

    }

    public static void main(String[] args) throws IOException {
        int t = 1;
//        t = Integer.parseInt(in.readLine());
        while (t -- > 0) {
            solve();
        }
        in.close();
        out.flush();
        out.close();
    }

    private static InputStream is = System.in;
    static {
        try {
            is = Files.newInputStream(Paths.get("F:\\Notes\\Algorithm\\Problems\\java\\java\\src\\main\\java\\input.txt"));
        } catch (Exception e) {
            is = System.in;
        }
    }
    private static final BufferedReader in = new BufferedReader(new InputStreamReader(is));
    private static final PrintWriter out = new PrintWriter(System.out);
    private static int pInt(String s) {
        return Integer.parseInt(s);
    }
    private static long pLong(String s) {
        return Long.parseLong(s);
    }
    private static String[] pStringArray() throws IOException {
        return in.readLine().split(" ");
    }
    private static int[] pIntArray(int start) throws IOException {
        String[] s = pStringArray();
        int[] arr = new int[start + s.length];
        for (int i = start, j = 0; i < arr.length; i++, j ++) {
            arr[i] = Integer.parseInt(s[j]);
        }
        return arr;
    }

    private static long[] pLongArray(int start) throws IOException {
        String[] s = pStringArray();
        long[] arr = new long[start + s.length];
        for (int i = start, j = 0; i < arr.length; i++, j ++) {
            arr[i] = Long.parseLong(s[j]);
        }
        return arr;
    }
}

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

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

相关文章

盲人地图使用的革新体验:助力视障人士独立、安全出行

在我们日常生活中&#xff0c;地图导航已经成为不可或缺的出行工具。而对于盲人群体来说&#xff0c;盲人地图使用这一课题的重要性不言而喻&#xff0c;它不仅关乎他们的出行便利性&#xff0c;更是他们追求生活独立与品质的重要一环。 近年来&#xff0c;一款名为蝙蝠…

《HCIP-openEuler实验指导手册》1.7 Apache虚拟主机配置

知识点 配置步骤 需求 域名访问目录test1.com/home/source/test1test2.com/home/source/test2test3.com/home/source/test3 创建配置文件 touch /etc/httpd/conf.d/vhost.conf vim /etc/httpd/conf.d/vhost.conf文件内容如下 <VirtualHost *.81> ServerName test1.c…

python中如何用matplotlib写雷达图

#代码 import numpy as np # import matplotlib as plt # from matplotlib import pyplot as plt import matplotlib.pyplot as pltplt.rcParams[font.sans-serif].insert(0, SimHei) plt.rcParams[axes.unicode_minus] Falselabels np.array([速度, 力量, 经验, 防守, 发球…

AtCoder Beginner Contest 351 G. Hash on Tree(树剖维护动态dp 口胡题解)

题目 n(n<2e5)个点&#xff0c;给定一个长为a的初始权值数组&#xff0c; 以1为根有根树&#xff0c; 树哈希值f计算如下&#xff1a; &#xff08;1&#xff09;如果一个点u是叶子节点&#xff0c;则f[u]a[u] &#xff08;2&#xff09;否则&#xff0c; q(q<2e5)次…

【C++】从零开始认识继承

送给大家一句话&#xff1a; 其实我们每个人的生活都是一个世界&#xff0c;即使最平凡的人也要为他生活的那个世界而奋斗。 – 路遥 《平凡的世界》 ✩◝(◍⌣̎◍)◜✩✩◝(◍⌣̎◍)◜✩✩◝(◍⌣̎◍)◜✩ ✩◝(◍⌣̎◍)◜✩✩◝(◍⌣̎◍)◜✩✩◝(◍⌣̎◍)◜✩ ✩◝(◍…

详解如何品味品深茶的精髓

在众多的茶品牌中&#xff0c;品深茶以其独特的韵味和深厚的文化底蕴&#xff0c;赢得了众多茶友的喜爱。今天&#xff0c;让我们一同探寻品深茶的精髓&#xff0c;品味其独特的魅力。 品深茶&#xff0c;源自中国传统茶文化的精髓&#xff0c;承载着世代茶人的智慧与匠心。这…

linux kernel内存泄漏检测工具之slub debug

一、背景 slub debug 是一个debug集&#xff0c;聚焦于kmem_cache 分配机制的slub内存&#xff08;比如kmalloc&#xff09;&#xff0c;这部分内存在内核中使用最频繁&#xff0c;slub debug其中有相当部分是用来处理内存踩踏&#xff0c;内存use after free 等异常的&#x…

【项目】仿muduo库One Thread One Loop式主从Reactor模型实现高并发服务器(Http板块)

【项目】仿muduo库One Thread One Loop式主从Reactor模型实现高并发服务器&#xff08;Http板块&#xff09; 一、思路图二、Util板块1、Splite板块&#xff08;分词&#xff09;&#xff08;1&#xff09;代码&#xff08;2&#xff09;测试及测试结果i、第一种测试ii、第二种…

PotatoPie 4.0 实验教程(29) —— FPGA实现摄像头图像均值滤波处理

图像的均值滤波简介 图像均值滤波处理是一种常见的图像处理技术&#xff0c;用于降低图像中噪声的影响并平滑图像。该方法通过在图像中滑动一个固定大小的窗口&#xff08;通常是一个正方形或矩形&#xff09;&#xff0c;将窗口中所有像素的值取平均来计算窗口中心像素的新值…

GateWay具体的使用之全链路跟踪TraceId日志

1.创建全局过滤器&#xff0c;在请求头上带入traceId参数&#xff0c;穿透到下游服务. package com.by.filter;import cn.hutool.core.collection.CollUtil; import cn.hutool.core.util.IdUtil; import cn.hutool.core.util.ObjectUtil; import cn.hutool.jwt.JWTValidator;…

【Kotlin】Channel简介

1 前言 Channel 是一个并发安全的阻塞队列&#xff0c;可以通过 send 函数往队列中塞入数据&#xff0c;通过 receive 函数从队列中取出数据。 当队列被塞满时&#xff0c;send 函数将被挂起&#xff0c;直到队列有空闲缓存&#xff1b;当队列空闲时&#xff0c;receive 函数将…

vue3 vite 路由去中心化(modules文件夹自动导入router)

通过路由去中心化可实现多人写作开发&#xff0c;不怕文件不停修改导致的冲突&#xff0c;modules中的文件可自动导入到index.js中 // 自动导入模块 const files import.meta.globEager(./modules/**.js); const modules {} for (const key in files) {modules[key.replace…

前端工程化Vue使用Node.js设置国内高速npm镜像源(踩坑记录版)

前端工程化Vue使用Node.js设置国内高速npm镜像源&#xff08;踩坑记录版&#xff09; 此篇仅为踩坑记录&#xff0c;并未成功更换高速镜像源&#xff0c;实际解决方法见文末跳转链接。 1.自身源镜像 自身镜像源创建Vue项目下载速度感人 2.更改镜像源 2.1 通过命令行配置 前提…

在Redux Toolkit中使用redux-persist进行状态持久化

在 Redux Toolkit 中使用 redux-persist 持久化插件的步骤如下: 安装依赖 npm install redux-persist配置 persistConfig 在 Redux store 配置文件中(例如 rootReducer.js)&#xff0c;导入必要的模块并配置持久化选项: import { combineReducers } from redux; import { p…

【MySQL关系型数据库】基本命令、配置、连接池

目录 MySQL数据库 第一章 1、什么是数据库 2、数据库分类 3、不同数据库的特点 4、MySQL常见命令&#xff1a; 5、MySQL基本语法 第二章 1、MySQL的常见数据类型 1、数值类型 2、字符类型 3、时间日期类型 2、SQL语句分类 1、DDL&#xff08;数据定义语言&#x…

mysql-sql-练习题-2-窗口函数

窗口函数 访问量max sum建表窗口函数连接 直播间人数 第1、3名建表排名sum 访问量max sum 每个用户截止到每月为止&#xff0c;最大单月访问次数&#xff0c;累计到该月的总访问次数 建表 create table visit(uid1 varchar(5) comment 用户id,month1 varchar(10) comment 月…

28.Gateway-网关过滤器

GatewayFilter是网关中提供的一种过滤器&#xff0c;可以多进入网关的请求和微服务返回的响应做处理。 GatewayFilter(当前路由过滤器&#xff0c;DefaultFilter) spring中提供了31种不同的路由过滤器工厂。 filters针对部分路由的过滤器。 default-filters针对所有路由的默认…

锂电池SOH预测 | 基于BP神经网络的锂电池SOH预测(附matlab完整源码)

锂电池SOH预测 锂电池SOH预测完整代码锂电池SOH预测 锂电池的SOH(状态健康度)预测是一项重要的任务,它可以帮助确定电池的健康状况和剩余寿命,从而优化电池的使用和维护策略。 SOH预测可以通过多种方法实现,其中一些常用的方法包括: 容量衰减法:通过监测电池的容量衰减…

.NET 检测地址/主机/域名是否正常

&#x1f331;PING 地址/主机名/域名 /// <summary>/// PING/// </summary>/// <param name"ip">ip</param>/// <returns></returns>public static bool PingIp(string ip){System.Net.NetworkInformation.Ping p new System.N…

Qt/C++ 波形绘制双缓冲下改善PaintEvent连续绘制卡顿问题(完整代码解析)

音频波形可视化&#xff1a;该控件用于将音频样本数据可视化为波形&#xff0c;常用于音频处理软件中以展示音频信号的时间域特性。 动态数据绘制&#xff1a;控件能够响应外部数据的变化并重新绘制波形&#xff0c;适用于实时或动态的音频数据流。 自定义绘制逻辑&#xff1…