密码截获 (C语言代码)穷举法 摘要:参考代码:#include <stdio.h> #include <string.h> int symm(int i,int j,char *a) { int k,m,flag=1…… 题解列表 2019年02月02日 0 点赞 0 评论 672 浏览 评分:0.0
还是不理解为啥错了 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int ans = 0,maxx,flag,l,k,q,p;…… 题解列表 2023年03月01日 0 点赞 0 评论 226 浏览 评分:0.0
密码截获 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int huiwen_judge(int m,int k,char *s){ int l=m; int l1=k; f…… 题解列表 2019年02月03日 0 点赞 0 评论 1162 浏览 评分:0.0
密码截获-题解(C++代码)穷举 + 优化,马拉车还没消化,以后补上 摘要:——————————————————————————————— M 1 & 题解列表 2020年09月21日 0 点赞 0 评论 760 浏览 评分:0.0
密码截获 (C语言代码) 摘要:解题思路:注意事项:#include<stdio.h> #include<string.h> #include<stdlib.h> int main() { char …… 题解列表 2019年02月24日 0 点赞 0 评论 749 浏览 评分:0.0
编写题解 1209: 密码截获 摘要:解题思路:注意事项:参考代码:while True: try: st=input() ts=st[::-1] s=[] &n 题解列表 2022年04月08日 0 点赞 0 评论 320 浏览 评分:0.0
非常暴力的解法 摘要:```python def f(s):#判断是否对称 if s==s[::-1]: return True else: return Fals…… 题解列表 2022年04月07日 0 点赞 0 评论 383 浏览 评分:0.0
最长回文字符串(动态规划) 自用笔记 摘要:解题思路: 动态规划注意事项:如图所示,dp[0][3]的意思是cabb,不是指c和b。以对角线为分割,从左往右一列一列的填参考代码:#include<iostream> #include<ioma…… 题解列表 2022年02月24日 0 点赞 0 评论 259 浏览 评分:0.0
密码截获1209 摘要:解题思路:稍微有些麻烦了,但很好理解注意事项:参考代码:#include<stdio.h>#include<string.h>int m,x,y;int judge(char s1[1000]) { …… 题解列表 2022年02月11日 0 点赞 0 评论 303 浏览 评分:0.0
zb-关于1209密码截获问题,我的简单粗暴方法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string>int main(){ string s; int…… 题解列表 2022年02月07日 0 点赞 0 评论 238 浏览 评分:0.0