摘要: 中缀表达式转换为后缀(只能是字母) #include <bits/stdc++.h> #define rep(i,a,b) for(int i=(a);i<=(b);i++) #define ll long long using namespace std; vector<char> st; int 阅读全文
posted @ 2021-10-29 22:20 DeaL57 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 题目集1 A https://vjudge.net/contest/412612#problem/A 求有多少个S子串满足长度是M*L,子串划分为M节长度为L的小子串,M节小子串的每一位都不同 解:哈希然后尺取 #include <bits/stdc++.h>#define ll long long 阅读全文
posted @ 2021-10-29 01:15 DeaL57 阅读(35) 评论(0) 推荐(0) 编辑