2024.04.27 01. 小A的字符串替换 问题描述 小A有一个仅由小写字母组成的字符串 S S S,长度不超过 100000 100000 100000。她准备把其中所有的 mei 子串替换为 tuan 子串,你能帮她完成这个任务吗? 输入格式 输入一个仅由小写字母组成的字符串 S S S,表示小A拥有的原始字符串。 输出格式 输出一个字符串,表示将 S S S 中所有
题意: 置换方式为 c [ i ] = a [ b [ i ] ] c[i]=a[b[i]] c[i]=a[b[i]],a为初始数字,b为置换数组。 给你初始b数组,求存在多少个a数组经过一些置换可以变成有序数组。 思路: 第二场的时候也出了个置换题,只不过是给你初始序列和最终序列,求置换数组,而且置换方程为 c [ i ] = b [ a [ i ] ] c[i]=b[a[i]] c[i]=b
题意: n*m的棋盘,每个格子可以放G,H,E 但是每个H旁边必须有一个G或者E,f(n,m)为这个棋盘可以放置的最多H数 求n,m都无穷大时的 f ( n , m ) n ∗ m \frac{f(n,m)}{n*m} n∗mf(n,m) 思路: 一开始推了个假公式算出0.5,wa了后猜2/3才过的。 最优的放置方法类似下面,每两行H,再放一行E或者G,所以结果是2/3。 EEEEE
链接:https://ac.nowcoder.com/acm/contest/5670/B 来源:牛客网 题目描述 Mr. W got a new graph with N vertices and N - 1 edges. It’s a connected graph without cycles. Each edge should have an ugly value. To make th
There are n students going to travel. And hotel has two types room:double room and triple room. The price of a double room is p2 and the price of a triple room is p3 Now you need to calulate the mini
链接:https://www.nowcoder.com/acm/contest/143/D 来源:牛客网 Kanade has an even number n and a permutation b of all of the even numbers in [1,n] Let a denote an array [1,3,5....n-1] , now you need to find
题目链接:点我啊╭(╯^╰)╮ 题目大意: n n n 个点,求所有能组成的集的最大独立集的和 解题思路: n ≤ 26 n≤26 n≤26,所以可以 状压 d p dp dp a x a_x ax 表示 x x x 这个点连的边的状态 l b x lb_x lbx 表示 x x x 二进制中最低位为 1 1 1 的位置 __ b
题目链接:点我啊╭(╯^╰)╮ 题目大意: 长度为 n n n 的字符串,以及 m ⋅ ( m − 1 ) / 2 m⋅(m−1)/2 m⋅(m−1)/2 次说明 每次说明给出两个字符,然后告诉这所有两个字符在原串中的相对位置 最后还原该串 解题思路: 易得,若有答案,只能为一种 给出两个字符的所有位置,即可将任意两个字符的关系表示出来
2022杭电多校第五场 Slipper(最短路) 题意 有一个以 1 1 1为根的有根树,每条边有一个边权 w w w,经过一条边消耗边权大小的能量。如果树上两点 u u u, v v v之间深度之差恰好为 k k k,则两点之间可以相互到达,从 u u u到 v v v或从 v v v到 u u u消耗能量 p p p,问从 s s s到 t t t消耗的最少能量。 分析 建图跑最短路
Problem Description Steve has an integer array a of length n (1-based). He assigned all the elements as zero at the beginning. After that, he made m operations, each of which is to update an interva
Problem Description Anton has a positive integer n, however, it quite looks like a mess, so he wants to make it beautiful after k swaps of digits. Let the decimal representation of n as (x1x2⋯xm)10