相关文章
DK2408双输入开关量检测遥控SV智能PID控制器
DK2408双输入开关量检测遥控SV智能PID控制器
产品简介 2408程序过程控制器是采用最新测量控制技术设计的工业过程控制仪表。采用先进的硬件和软件设计技术,具有测量和控制精度高等特点。 支持9条工艺曲线,每条可设定24段程序曲线,可以实现24…
建站知识
2024/10/12 6:12:39
百练:2408:Anagram Groups
1、解题思路
根据题意需要对一连串字符串进行分类,分类标准为最小字典序排列相同,则根据分类和输出标准可以构造一个结构体,结构体如下:
struct node{ set<string> s_set; string new_string; string old_fir…
建站知识
2024/11/10 13:12:34
sdut2408 Pick apples
Pick apples Time Limit: 1000ms Memory limit: 165536K 有疑问?点这里^_^ 题目描述 Once ago, there is a mystery yard which only produces three kinds of apples. The number of each kind is infinite. A girl carrying a big bag comes into the yard. Sh…
建站知识
2024/11/12 3:15:22
P2408 不同子串个数 后缀自动机做法
传送门 题意 给一个字符串,求它有多少个不同的子串。 思路 后缀数组当然是能做的,每个sa[i] - height[i]的和就是答案了。 后缀自动机也可以做,后缀自动机上从起点到任意状态就是一个子串,每条路径表示的子串都不同,所…
建站知识
2024/11/12 3:15:25
SSL-ZYC 2408 比萨
题目大意: 思路: DFS爆搜 数据小,可以轻松AC。 代码:
#include <cstdio>
#include <iostream>
using namespace std;int sum,n,m,a[61][31],t[31],b[61],l,ok;int p() //判断
{ok0;for (int i1;i<m;i) //枚…
建站知识
2024/11/12 3:15:21
2408 c++ 小游戏
编译环境 : arm-linux-gcc
#include <sys/mman.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#inclu…
建站知识
2024/11/14 7:14:53
洛谷P2408 不同子串个数
链接
点击跳转
题解 a n s ∑ u ∈ s a m ( l e n u − l e n f ( u ) ) ans \sum_{u \in sam} ( len_u - len_{f(u)} ) ansu∈sam∑(lenu−lenf(u))
名不虚传,后缀自动机果然是快,完爆后缀数组
代码
#include <bits/stdc.h>
#includ…
建站知识
2024/11/12 22:32:44