全部评论
80 100 50
第三题 python 解法 https://github.com/981377660LMT/algorithm-study/blob/master/21_%E4%BD%8D%E8%BF%90%E7%AE%97/%E4%BA%8C%E8%BF%9B%E5%88%B6%E6%9E%9A%E4%B8%BE%E4%B8%8E%E4%B8%89%E8%BF%9B%E5%88%B6%E6%9E%9A%E4%B8%BE/%E4%B8%89%E8%BF%9B%E5%88%B6%E6%9E%9A%E4%B8%BE/%E8%B6%B3%E7%90%83%E6%AF%94%E8%B5%9B%E5%BE%97%E5%88%86.py
//0 1 2 3 4五个队伍 10场比赛的双方 private static int[] a = {0, 0, 0, 0, 1, 1, 1, 2, 2, 3}; private static int[] b = {1, 2, 3, 4, 2, 3, 4, 3, 4, 4}; private static Integer[] scores = new Integer[5]; private static Set<List<Integer>> set = new HashSet<>(); public static void main(String[] args) { Arrays.fill(scores, 0); dfs(0); } public static void dfs(int depth) { if (depth == 10) { Integer[] copyScores = Arrays.copyOf(scores, scores.length); Arrays.sort(copyScores); List<Integer> copyScoresList = Arrays.asList(copyScores); set.add(copyScoresList); return; } scores[a[depth]] += 3; dfs(depth+1); scores[a[depth]] -= 3; scores[b[depth]] += 3; dfs(depth+1); scores[b[depth]] -= 3; scores[a[depth]] += 1; scores[b[depth]] += 1; dfs(depth+1); scores[a[depth]] -= 1; scores[b[depth]] -= 1; }
1、2都80%不知道为什么,第三题同dfs超时,但是试来试去也没办法减少搜索情况
为什么第二题我暴力就过了10%😅
哈哈,一样哎,第三题OOM了
不是还要15分钟才结束吗 怎么代码都贴出来了
第一题float!不要用double!
我也是,示例也过不了,远小于165,三重for循环加个判断,判断用的向量积
第三题用静态方法dfs爆搜,然后在静态代码块中执行dfs,把所有结果保存到静态集合中,每次只需要判断输入在不在集合中就行
我第一题都没做出来,老哥来个解法 😂
有没有第一题不是80%的带佬点拨一下
第三题所谓的单循环比赛是咋比的?
选择题好难,算法题90 100 50
为什么你们的题都和我不一样??
真没想到n是指的index... 这题描述的也太模糊了😥
有大佬告诉我为啥单循环赛会只有10场吗😂,直接打印no yes也50%了
第一题一直80%,不知道怎么优化,后面两题AC了
唉 就会第一题编程,第二题计算器用栈实现了一半用例,第三题不会。。。。。。选择题为啥全他妈是GAN和 NLP相关的就一题吧,我心态崩了。凉了。
就我选择题是让我求矩阵特征值,求概率吗?我做开发让我做这些干嘛😂
相关推荐
点赞 评论 收藏
分享

点赞 评论 收藏
分享
点赞 评论 收藏
分享
03-27 11:00
门头沟学院 Java 点赞 评论 收藏
分享