摘要: 目录Optimized Content Caching and User Association for Edge Computing in Densely Deployed Heterogeneous Networks1、问题背景贡献点:2、系统建模及问题公式化系统建模问题公式化联合内容缓存和用户 阅读全文
posted @ 2023-11-18 22:18 wsl_lld 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> #include <time.h> #include <unistd.h> #include <pthread.h> #include <string.h> #define NUM 3 pthread_mutex_t mu 阅读全文
posted @ 2022-12-31 16:50 wsl_lld 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 需要的工具: wsj0原数据集(LDC93S6A 或者 LDC93S6B) python3 sph2pipe python code: FOR LDC93S6B: """ # example: # 11-1.1/wsj0/si_tr_s/01t/01to030v.wv1 is converted t 阅读全文
posted @ 2022-03-02 15:31 wsl_lld 阅读(1274) 评论(5) 推荐(1) 编辑
摘要: 原题链接Critical Structures #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> pii; #define mp make_pair #define ne 阅读全文
posted @ 2021-10-22 12:42 wsl_lld 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 转载于:https://www.cnblogs.com/aurora2004/p/12619977.html 阅读全文
posted @ 2021-07-31 16:31 wsl_lld 阅读(137) 评论(0) 推荐(0) 编辑
摘要: led.h #ifndef LED_H #define LED_H #include "stm32f4xx.h" typedef enum LED_ID_T{ LED_D1 = 1, LED_D2, LED_D3, LED_D4 } LED_ID; void led_init(void); void 阅读全文
posted @ 2021-05-29 16:09 wsl_lld 阅读(694) 评论(0) 推荐(0) 编辑
摘要: LED.h #ifndef LED_H #define LED_H #include "stm32f4xx.h" typedef enum LED_ID_T{ LED_D1 = 1, LED_D2, LED_D3, LED_D4 } LED_ID; void led_init(void); void 阅读全文
posted @ 2021-05-24 14:33 wsl_lld 阅读(726) 评论(0) 推荐(0) 编辑
摘要: 链接:CF786B Legacy 题意: 有一个n个节点的有向有权图 有三种类型的边: 1.从u到v的一条边权为w的边 2.从u到区间[l,r]任意一个点都有一条边权为w的边 3.从区间[l,r]中任意一个点到v点都有一条边权为w的边 求从点1到其他所有点的最短路。若不可达,则输出-1 题解: 第一 阅读全文
posted @ 2021-05-24 13:22 wsl_lld 阅读(85) 评论(0) 推荐(0) 编辑
摘要: //PF9-LED0,PF10-LED1 //PF13-LED2,PF14-LED3 #define rRCCAHB1CLKEN *((volatile unsigned long *) 0x40023830) #define rGPIOF_MODER *((volatile unsigned lo 阅读全文
posted @ 2021-05-20 20:10 wsl_lld 阅读(798) 评论(0) 推荐(0) 编辑
摘要: 序列自动机: 原理:用一个数组nxt[i][j]表示字符串从i下标开始的最近的 c = j + 'a' 这个字符出现的位置 举个例子: s = "abcca" (默认下标为1-5) nxt[0][0] = 1,即字符串中出现的第一个字符'a'的位置为1 nxt[1][1] = 2,即字符串距离下标1 阅读全文
posted @ 2021-04-09 22:26 wsl_lld 阅读(68) 评论(0) 推荐(0) 编辑