Build a String
题目
https://www.hackerrank.com/challenges/build-a-string/problem
题意
有两种对字符串的操作:
- 在末尾加一个字符,代价为 \(A\)。
- 在末尾加一个子串,代价为 \(B\)。
求构建字符串 \(S\) 的最小代价。
https://www.hackerrank.com/challenges/build-a-string/problem
有两种对字符串的操作:
求构建字符串 \(S\) 的最小代价。
https://www.hackerrank.com/challenges/challenging-palindromes/problem
求一个最长的由 串 a 和 串 b 的子串拼接而成的回文字符串(长度相同,字典序最小)。
http://acm.hdu.edu.cn/showproblem.php?pid=4918
给一棵有点权的树,要求支持两种操作:
http://acm.hdu.edu.cn/showproblem.php?pid=6054
https://www.hackerrank.com/challenges/johnland/problem
给一个联通的无向图,求所有点对之间的最小距离和。其中每条边的距离都是 2 的幂且互不相同。