摘要: #include <iostream> #include <cstring> #include<string> using namespace std; const int N = 1e6 + 10; int tree[N][26], p[N], e[N]; int idx; //插⼊字符串: vo 阅读全文
posted @ 2025-08-20 19:26 xdhking 阅读(10) 评论(0) 推荐(0)
摘要: code: #include<iostream> #include<cstring> using namespace std; const int N=16; int d[N],n; int dp[N]; int dfs(int pos,bool limit){ if(pos==0) return 阅读全文
posted @ 2025-08-20 19:05 xdhking 阅读(6) 评论(0) 推荐(0)