摘要:
题目链接: E. Centroids time limit per test 4 seconds memory limit per test 512 megabytes input standard input output standard output time limit per test 4 阅读全文
摘要:
题目链接: D. Recover the String time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output time limit pe 阅读全文
摘要:
题目链接: C. Letters Cyclic Shift 题意: 现在一串小写的英文字符,每个字符可以变成它前边的字符即b-a,c-a,a-z这样,选一个字串变换,使得得到的字符串字典序最小; 思路: 贪心,尽量让前边的字典序变小; AC代码: 阅读全文
摘要:
题目链接: B. Checkpoints 题意: 给了n个点,现在给一个起点,问最少访问n-1个点的最小行走距离是多少; 思路: 分情况讨论就好了; AC代码: 阅读全文
摘要:
题目链接: A. Juicer 题意: 给出n个橘子,汁漫出来了就倒出来,反正就是要求要倒几次; 思路: AC代码: 阅读全文