首页 > 标记字符
头像 第一次当人
发表于 2020-12-04 21:27:47
钻b,铜c dp https://www.bilibili.com/video/BV1sZ4y1g74R?p=3 #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef double db; 展开全文
头像 kid1402
发表于 2020-12-04 21:11:04
B题https://ac.nowcoder.com/acm/contest/9716/B int dp[1001][1001]; class Solution { public: /** * * @param n int整型 乐谱总音符数 * @param m 展开全文
头像 你回家了我在等你呢
发表于 2020-12-04 21:18:47
第三题题解,组合问题 # # # @param n int整型 乐谱总音符数 # @param m int整型 重音符数 # @param k int整型 重音符之间至少的间隔 # @return long长整型 # import math class Solution: def s 展开全文
头像 Ruoji55555
发表于 2020-12-07 18:15:28
A题 数据范围1024 直接暴力做了... public int string2(int k, String s) { // write code here int[] arr = new int[s.length()]; char[] s 展开全文