pakencamp atcoder 2022 day2

AtCoder Regular Contest 141 E Sliding Edge on Torus

[洛谷传送门](https://www.luogu.com.cn/problem/AT_arc141_e "洛谷传送门") [AtCoder 传送门](https://atcoder.jp/contests/arc141/tasks/arc141_e "AtCoder 传送门") $(i, j) \ ......
AtCoder Regular Contest Sliding Torus

AtCoder Beginner Contest 303 ABCDE

# [AtCoder Beginner Contest 303](https://atcoder.jp/contests/abc303) ## A - Similar String ### Problem Statement 题意:给你两个串判断是不是相似的。 相似:不一样的字符中1和l相似,0和o ......
Beginner AtCoder Contest ABCDE 303

AtCoder Beginner Contest(abc) 300

*** ### A - [N-choice question](https://atcoder.jp/contests/abc300/tasks/abc300_a) #### 题目大意 >从n个数里面找出a+b的结果 #### 解题思路 >签到题不多嗦了 #### 神秘代码 ```c++ #incl ......
Beginner AtCoder Contest 300 abc

.Net Core Mvc 2. VS2022 + Core6.0 + Mvc 添加视图,传递数据

添加视图 找到控制器HelloWorldController的叫Index的Action 在上面右键,选择添加视图,选择空,确认后会在Views文件夹下新建一个HelloWorld文件夹,并生成Index.cshtml文件。 直接运行 可以看到Index视图有默认的头部内容和底部内容(太长了没截取) ......
Core 视图 Mvc 数据 Core6

AtCoder Regular Contest 162

### [A](https://atcoder.jp/contests/arc162/tasks/arc162_a) 答案即后缀最小值个数。 时间复杂度 $\mathcal{O}(n)$。 提交记录:[Submission #42717665 - AtCoder Regular Contest 16 ......
AtCoder Regular Contest 162

要禁用 Windows Server 2022 2025时自动打开服务器管理器,可以通过以下批处理命令实现

要禁用 Windows Server 2022 2025时自动打开服务器管理器,可以通过以下批处理命令实现: 首先打开记事本,输入以下命令: @echo off reg add "HKLM\Software\Microsoft\ServerManager" /v DoNotOpenServerMan ......
可以通过 命令 Windows 服务器 Server

AtCoder Beginner Contest 220 H Security Camera

[洛谷传送门](https://www.luogu.com.cn/problem/AT_abc220_h "洛谷传送门") [AtCoder 传送门](https://atcoder.jp/contests/abc220/tasks/abc220_h "AtCoder 传送门") 看到数据范围猜复杂 ......
Beginner Security AtCoder Contest Camera

AtCoder Beginner Contest 306 题解 A - E

## [A](https://atcoder.jp/contests/abc306/tasks/abc306_a) - Echo ### 题目大意 给定一个字符串,需要把它每个字符重复输出。 ### 解题思路 可以读完整个字符串,也可以按照字符读一个输出两个。 ### AC Code ```cpp ......
题解 Beginner AtCoder Contest 306

Windows Server 2022 多用户同时登录 开启 批处理

使用批处理在 Windows Server 2022 上配置远程桌面服务和远程桌面会话主机的连接,您可以按照以下步骤进行操作: 启用远程连接: reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server" ......
同时 Windows 用户 Server 2022

2022 RoboCom 世界机器人开发者大赛-本科组(国赛)个人题解

## RC-u4 变牛的最快方法 ### 思路 最短编辑距离+记录路径板子题,不懂最短编辑距离的可以看看网上的博客。不懂为什么官方题解用的bfs写法,然后网上所有的题解就是bfs了。我这里就是双重for循环实现,参考下写法即可。 ### 代码 点击查看代码 ``` #include #define ......
题解 开发者 机器人 本科 机器

Windows Server 2022 上添加无线网卡组件的批处理命令 启用 Windows Server 2022 无线网卡服务并设置其自动启动的批处理命令

在 Windows Server 2022 上添加无线网卡组件的批处理命令: 打开记事本,将以下命令复制粘贴到记事本中: dism /online /enable-feature /featurename:Wireless-Networking /All 将文件保存为后缀名为 .bat 的批处理文件 ......
无线网卡 网卡 命令 Windows 无线

使用以下命令来禁用 Windows Server 2022 上的密码复杂性要求

使用以下命令来禁用 Windows Server 2022 上的密码复杂性要求: 打开记事本,将以下命令复制粘贴到记事本中: net accounts /minpwlen:0 net accounts /maxpwage:unlimited net accounts /minpwage:0 将文件保 ......
复杂性 命令 密码 Windows Server

禁用 Windows Server 2022 密码过期策略的批处理命令 密码永不过期

禁用 Windows Server 2022 密码过期策略的批处理命令: 打开记事本,将以下命令复制粘贴到记事本中: wmic path Win32_UserAccount where "LocalAccount=True AND PasswordExpires=True" set Password ......
密码 永不 命令 策略 Windows

AtCoder ABC306 DEF

## [D - Poisonous Full-Course](https://atcoder.jp/contests/abc306/tasks/abc306_d)(DP) ### 题意 现在有 $N$ 道菜,高桥需要依次享用。第 $i$ 道菜有两个属性 $(X_i,Y_i)$,其意义是: - 若 $ ......
AtCoder ABC 306 DEF

使用以下命令来关闭 Windows Server 2022 上的 Internet Explorer 安全增强

使用以下命令来关闭 Windows Server 2022 上的 Internet Explorer 安全增强: 打开记事本,将以下命令复制粘贴到记事本中: @echo off reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\I ......
Internet Explorer 命令 Windows Server

使用以下命令来禁止 Windows Server 2022 在登录时自动启动服务器管理器

使用以下命令来禁止 Windows Server 2022 在登录时自动启动服务器管理器: 打开记事本,将以下命令复制粘贴到记事本中: reg add "HKLM\Software\Microsoft\ServerManager" /v DoNotOpenServerManagerAtLogon / ......
命令 Windows 服务器 Server 2022

使用以下命令将 Windows Server 2022 上的 Bluetooth 服务全部设置为自动启动

使用以下命令将 Windows Server 2022 上的 Bluetooth 服务全部设置为自动启动: 打开记事本,将以下命令复制粘贴到记事本中: sc config bthserv start= auto sc config BluetoothAudioGatewayService start ......
Bluetooth 命令 Windows Server 2022

AtCoder Beginner Contest 306 G Return to 1

[洛谷传送门](https://www.luogu.com.cn/problem/AT_abc306_g "洛谷传送门") [AtCoder 传送门](https://atcoder.jp/contests/abc306/tasks/abc306_g "AtCoder 传送门") 考虑若干个能被 $ ......
Beginner AtCoder Contest Return 306

【题解】Atcoder ABC300 F.More Holidays(线性做法)

## F.More Holidays ### 题目描述: 给你一个由 `o` 和 `x` 组成的长度为 $N$ 的字符串 $S$,以及整数 $M$ 和 $K$。保证 $S$ 至少包含一个 `x`。 假设 $T$ 是由 $S$ 复制 $M$ 次而成的长度为 $NM$ 的字符串。考虑将 $T$ 中的 $ ......
题解 线性 Holidays 做法 Atcoder

3.2 鱼与熊掌可以兼得的深度学习-2022

# 1. 问题回顾 在上节的再谈宝可梦、数码宝贝分类问题上,我们提出了机器学习的分类原理.并提出了一个矛盾点:当可选参数过多,loss会变小,但理想和现实差距会很大;当可选参数比较少,loss会变大,但理想和现实差距会减小.现在我们需要一个Loss小,可选参数也少的模型. ![image](http ......
深度 2022 3.2

关于CSP 2022

这次还是我第一次参加CSP复赛,去年初赛寄了。 去年寄了之后我还写了篇文章挂着,那篇文章是我在考完当晚用小图灵测了分数之后百感交集,写下的。之后过了几个月我把它删掉了。 之后就是继续努力的一年。 到了2022的暑假,看着luogu主页上的csp倒计时渐渐临近,我们开始训练初赛。之后暑假结束,即将开学 ......
2022 CSP

AtCoder Beginner Contest 306

## [A - Echo (abc306 a)](https://atcoder.jp/contests/abc306/tasks/abc306_a) ### 题目大意 给定一个字符串,将每个字符输出两次。 ### 解题思路 模拟即可。 神奇的代码 ```cpp #include using nam ......
Beginner AtCoder Contest 306

AtCoder Beginner Contest 242 Ex Random Painting

[洛谷传送门](https://www.luogu.com.cn/problem/AT_abc242_h "洛谷传送门") [AtCoder 传送门](https://atcoder.jp/contests/abc242/tasks/abc242_h "AtCoder 传送门") 好久没复习过 mi ......
Beginner Painting AtCoder Contest Random

AtCoder ABC228D 题解

## [ABC299D] Find by Query题解 ### 0x00 题目分析 #### [题目传送门](https://www.luogu.com.cn/problem/AT_abc299_d) 经过分析,我们得到的几个**关键信息**: > - $n \le 2 \times 10^5$ ......
题解 AtCoder 228D ABC 228

AtCoder ABC056D 题解

## [题目直达](https://www.luogu.com.cn/problem/AT_arc070_b) ## 0x00 思路 从大到小枚举每个元素,同时加入 $sum$ 进行累计,当 $k \le sum$ 时,便会返现之前的元素可以构成“好的组”(因为他们都大于 $p_i$),即有用的,所 ......
题解 AtCoder 056D ABC 056

AtCoder ABC047D 题解

## 题意理解&分析: 大概的题意应该是十分清晰的,就是一个人要从 $1$ 到 $n$ 的城市中买苹果。另一个人要其中调整价格。 这里的调整也不需要太多,就 $1$ 就可以了。但是,如果有多组购买方案可以得到**相同**的利润,就还需要将其他相同的价格**一并调整**。这道题的**关键**就在于求出 ......
题解 AtCoder 047D ABC 047

AtCoder ABC108C 题解

这是一道 AtCoder 的 ABC108C Triangular Relationship 题目。 ### 题目翻译 给定 $N$ 和 $K$,找出所有满足 $a+b,b+c,c+a$ 均为 $K$ 的倍数的 $(a,b,c)$,其中 $a,b,c$ 都是 $\le N$ 的正整数。$a,b,c$ ......
题解 AtCoder 108C ABC 108

AtCoder Beginner Contest 221 G Jumping sequence

[洛谷传送门](https://www.luogu.com.cn/problem/AT_abc221_g "洛谷传送门") [AtCoder 传送门](https://atcoder.jp/contests/abc221/tasks/abc221_g "AtCoder 传送门") 这个数据范围让我们 ......
Beginner sequence AtCoder Contest Jumping

AtCoder Beginner Contest 291 DEF

# [AtCoder Beginner Contest 291](https://atcoder.jp/contests/abc291) ## D - Flip Cards ### Problem Statement 题意:$N$张卡片,编号$1$到$N$,每张卡片有正反两面,写有数字,初始状态都是 ......
Beginner AtCoder Contest 291 DEF

AtCoder Beginner Contest 294 E

# [AtCoder Beginner Contest 294](https://atcoder.jp/contests/abc294) ## E - 2xN Grid ### Problem Statement 题意:给你$2$行长度为$L$的矩阵。告诉你格子里面的数字,以$vi$ $li$的形式 ......
Beginner AtCoder Contest 294