摘要: UNIQUE VISION Programming Contest 2022 Winter(AtCoder Beginner Contest 283) A - Power Given integers A and B, print the value A^B. 基础不解答 B - First Query Problem 基础不解答 C - Cash Register Takahashi is a cashier. There is a cash r 阅读全文
posted @ 2022-12-31 20:01 TTS-S 阅读(43) 评论(0) 推荐(0) 编辑
摘要: LeetCode第 94 场双周赛 1.最多可以摧毁的敌人城堡数目 题目 最多可以摧毁的敌人城堡数目 Solution 可以第一重循环找到$1$,然后从该位置分别向左和向又寻找$-1$,寻找过程中遇到$1$则停止,不更新ans,遇到$-1$则更新ans。 class Solution { public: int captureFort 阅读全文
posted @ 2022-12-31 19:39 TTS-S 阅读(21) 评论(0) 推荐(0) 编辑
摘要: LeetCode周赛325 1.到目标字符串的最短距离 题目 Solution class Solution { public: int closetTarget(vector<string>& words, string target, int startIndex) { int n = words.size(); int 阅读全文
posted @ 2022-12-31 15:59 TTS-S 阅读(18) 评论(0) 推荐(0) 编辑