题解列表
1115: DNA思路与代码 java
摘要:- 思路
观察一个单元e,g, a=3:
X0X
0X0
X0X
发现当行列相等, 或者行列相加等于a+1时为X,……
sort函数简单解决问题
摘要:#include<iostream>#include<algorithm>using namespace std;int arr[105];int main(){ int N; cin>>……
1796: 蛇形填数(c语言--突然启发,思路清晰,不懂来揍我)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int n;
int k=1;
int a[100][100];
wh……
1097: 蛇行矩阵 java
摘要:- 思路
模拟该矩阵的形成过程即可

……
编写题解 2014: 疯狂的裁缝
摘要:解题思路:注意事项:参考代码:n=int(input())
ls=list(map(int,input().split()))
dp=[0 for i in range(n)]
for i in……
DNA题目解析 C++代码详解
摘要:
######原题链接:[DNA](https://www.dotcpp.com/oj/problem1115.html "DNA")
------------
解题思路:观察题目中所给出的……
[STL训练]第二小整数
摘要:解题思路:随便写写注意事项:参考代码:#include<bits/stdc++.h>#include<algorithm>using namespace std;int main(){ int ……