1226. 包子凑数 - AcWing题库
#include <bits/stdc.h>using namespace std;const int N 110;
int n , d 0;
int a[N];
bool dp[N][10005];int gcd(int a,int b)
{return b ? gcd(b , a % b) : a;
}int main()
{cin >> n;for(int i 1 ;i < n;i ){cin >&g…
Task 1
Which two TCP ports are open on the remote host?
(远程服务器开放了哪两个TCP端口?)
$ nmap -sC -sV 10.129.234.232 22,80 Task 2
What is the relative path on the webserver for the login page?
(相关的登录页面路径是什么?) /login/login.php Task 3 …
题源力扣最长的回文子串
思路
因为回文串有一个特性,就是左右对称,所以判断一个区间是不是回文串只需要知道两个东西:
他的两个端点相不相等去掉两个端点以后还是不是回文串 用数学公式表达就是 d p ( i , j ) { d p [ i 1 ] [ j − 1 …