ICode9

精准搜索请尝试: 精确搜索
  • 【语音合成】基于matlab重叠相加法的信号分帧与还原【含Matlab源码 568期】2021-06-27 11:01:55

    一、简介 二、源代码 clc clear all close all [s,fs]=wavread('C7_1_y.wav'); winlen=256; win=hamming(winlen); overlap=100; f=enframe(s,win,overlap); fn=Filpframe_OverlapA(f,win,overlap); subplot(211) plot(s/max(abs(s))) xlabel('点数') ylabel('

  • HFSS中文手册_568页_微波仿真论坛出品[免费下载]2021-05-23 21:36:41

    对于学习微波的人来说,一本合适的中文参考书目是非常关键的,在此硬件之间推荐微波仿真论坛组织的《HFSS中文手册》(586页)。 HFSS HFSS是利用我们所熟悉的windows图形用户界面的一款高性能的全波电磁场(EM)段任意3D无源器件的模拟仿真软件。它易于学习,有仿真,可视化,立体建模,自动控制

  • Codeforces Round #568题解2021-04-04 23:36:20

    第一次遇到有9题的div2。。。 A题 排序后,伸展两边 #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> pll; const int N=2e5+10; const int mod=1e9+7; ll a[4]; int main(){ ios::sync_with_stdio(false); ll d; cin>&g

  • Codeforces Round #568 (Div. 2)G1. Playlist for Polycarp (easy version)(状压dp)2019-09-17 14:53:22

    https://codeforc.es/contest/1185/problem/G1 不难想到用二进制表示第i首歌选还是不选,d[s][t]表示当状态为s且最后一首歌的类型为t的方案数。 1 #define bug(x) cout<<#x<<" is "<<x<<endl 2 #define IO std::ios::sync_with_stdio(0) 3 #include <bits/stdc++.h> 4 #def

  • cf 568 c1 c22019-08-12 22:01:18

    cf 568 div2 c1 c2 题意: 有n个学生要考试,总的考试时间是M,每个学生考试需要\(t_i\)的时间,每次只能一个学生进行考试。问如果学生要完成考试,那么在他前面至少有多少人不能参加考试? 题解: 就是求一个序列前面最多多少个数相加少于等于( m - \(a_i\) ) c1数据范围比较小,然后今天又恰好看到

  • Codeforces Round #568 (Div. 2)2019-06-30 21:50:47

    B. Email from Polycarp 题意:给定一个原串 一个输出串   因为键盘问题  按键按一下可能出现多个   判断原创和输出串是否匹配 如  hello  和 heellooooooo  是匹配的   指针扫一遍即可  优先级  原串大于last  #include<bits/stdc++.h>using namespace std;//input by

  • Codeforces Round #568 (Div. 2) G1. Playlist for Polycarp (easy version) (状压dp)2019-06-22 10:04:18

    题目:http://codeforces.com/contest/1185/problem/G1 题意:给你n给选项,每个选项有个类型和价值,让你选择一个序列,价值和为m,要求连续的不能有两个相同的类型,相同的物]品不一样的顺序代表不同,问有多少个序列 思路:首先范围是15个,这里我们可以用状压来代表选择哪些物品,然后这里是说不能有

  • Codeforces Round #568 (Div. 2) G2. Playlist for Polycarp (hard version)2019-06-20 20:44:17

    因为不会打公式,随意就先将就一下? #include<cstdio>#include<algorithm>#include<iostream>#include<cstring>#include<vector>using namespace std;typedef long long LL;const int N=55;const int MOD=1e9+7;int add (int x,int y) {x=x+y;return x>

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有