首页 > TAG信息列表 > 1335

【时间序列预测】基于matlab最小均方(LMS)算法时间序列预测【含Matlab源码 1335期】

一、最小均方(LMS)算法简介 理论知识参考:最小均方算法(LMS) 二、部分源代码 %% Mackey Glass Time Series Prediction Using Least Mean Square (LMS) % Author: 紫极神光 clc clear all close all %% Loading Time series data % I generated a series y(t) for t = 0,1, . . . ,300

1335【毕设课设】基于单片机的公交车出租车计费器设计

【资源下载】下载地址如下:https://docs.qq.com/doc/DTlRSd01BZXNpRUxl   #include <reg51.h> #include <LCD12864.H> #include <key.h> #include <timer.h> #include <interrupt.h> int i; extern int flag_mode; extern int flag_state; extern int fla

codeforces-1335-E Three Blocks Palindrome

codeforces-1335-E Three Blocks Palindrome 传送门: easy:https://codeforces.com/contest/1335/problem/E1 hard:https://codeforces.com/contest/1335/problem/E2 题意: 定义 three blocks palindrome 为 aaaaabbbaaaaa,其中两边的a必须个数相等 而且序列中只存在两种元素 1 1 1

1335工作计划的最低难度

题目:你需要制定一份 d 天的工作计划表。工作之间存在依赖,要想执行第 i 项工作,你必须完成全部 j 项工作( 0 <= j < i)。你每天 至少 需要完成一项任务。工作计划的总难度是这 d 天每一天的难度之和,而一天的工作难度是当天应该完成工作的最大难度。给你一个整数数组 jobDif

1335. Minimum Difficulty of a Job Schedule

You want to schedule a list of jobs in d days. Jobs are dependent (i.e To work on the i-th job, you have to finish all the jobs j where 0 <= j < i). You have to finish at least one task every day. The difficulty of a job schedule is the sum of diffi

Leetcode 1335 工作计划的最低难度

题目描述:   题解:二维动态规划,状态为天数以及依次完成的任务数。注意题目给出的限制,任务需要依次执行,这为构造状态转移方程提供了先决条件。 定义dp[i][j]表示i天完成前j个任务的最小难度。状态转移的时候,遍历第i个可能完成的所有工作并取最小值就可以了,记dis[i][j]为第i个job至

uva 1335 - Beijing Guards(二分)

原文链接:http://www.cnblogs.com/riasky/p/3464915.html 题目链接:uva 1335 - Beijing Guards 题目大意:有n个人为成一个圈,其中第i个人想要r[i]种不同的礼物,相邻的两个人可以聊天,炫耀自己的礼物。如果两个相邻的人拥有同一种礼物,则双方都会很不高兴,问最

CSU 1335 高桥和低桥

有个脑筋急转弯是这样的:有距离很近的一高一低两座桥,两次洪水之后高桥被淹了两次,低桥却只被淹了一次,为什么?答案是:因为低桥太低了,第一次洪水退去之后水位依然在低桥之上,所以不算“淹了两次”。举例说明: 假定高桥和低桥的高度分别是5和2,初始水位为1 第一次洪水:水位提高到6(两个桥都被淹