题解列表

筛选

c++哈希表去重

摘要:解题思路:注意事项:不能重复利用自己产生的重量参考代码:#include <iostream> #include<bits/stdc++.h> using namespace std; #def……

蓝桥杯算法提高VIP-P0102

摘要:解题思路:无注意事项:无参考代码:s = input()print(&#39;Hex: &#39;+&#39;0x&#39;+s)print(&#39;Decimal:&#39;,end=&#39; ……
优质题解

爱琴海——芯片测试——超详细注释

摘要:解题思路:已知好芯片比坏芯片多。所以我们要取中间数,每列相加,大于中间数的话就是好芯片注意事项:好芯片比坏芯片多参考代码:#include<stdio.h> int main() { floa……

[编程入门]电报加密(简单入门)

摘要:解题思路:注意事项:参考代码:注意事项:字符串需要引号才能通过ord转换为数字形式a=str(input()) res=[] for i in a:     i=ord(i)#122     ……

使用动态规划进行计算k好数

摘要:解题思路:注意事项:参考代码:###使用动态规划进行计算k好数 mod_num=1000000007 K,L=map(int ,input().split()) dp=[[0]*(K+1) fo……