[TOC] Contest Info Data:2019.6.30 Solved:4/7 Solutions A. Stickers and Toys 题意: 有$A$物品$s$个,$B$物品$t$个,现在将这些物品装到$n$个箱子里,每个箱子只有一下三种情况: 只有一个$A$物品 只有一个$B$物 ...
分类:
其他好文 时间:
2019-07-01 20:05:54
阅读次数:
141
数字键盘组合 "17. Letter Combinations of a Phone Number (Medium)" 题目描述: 根据给出的数字字符串,组成其对应手机电话键盘上的字母组合。 思路分析: 这种求字符串排列组合的问题,我们使用回溯的思想来 ...
分类:
其他好文 时间:
2019-06-30 20:29:11
阅读次数:
146
1、效果图如下: 2、源码如下: html部分: js部分: css部分: 两个文件,carts.css 和 reset.css cart.css部分: 源码地址: 链接:https://pan.baidu.com/s/1HV1zk3QsJti8yyJ1gNBWnQ 提取码:skhx 如链接过期了私 ...
分类:
Web程序 时间:
2019-06-29 14:52:16
阅读次数:
174
17. Letter Combinations of a Phone Number Medium 2241301FavoriteShare 17. Letter Combinations of a Phone Number Medium 2241301FavoriteShare Medium Giv ...
分类:
其他好文 时间:
2019-06-23 17:31:12
阅读次数:
89
这里实现一个用神经网络(卷积神经网络也可以)实现验证码识别的小案例,主要记录本人做这个案例的流程,不会像之前那么详细,主要用作个人记录用。。。 这里是验证码的四个字母,被one-hot编码后形成的四个一维数组,[1, 26] * 4 > 可以转变成[4, 26] > [1, 104] 第一个位置:[ ...
分类:
其他好文 时间:
2019-06-22 10:40:18
阅读次数:
100
题目链接:https://vjudge.net/problem/UVA-814 题目翻译摘自《算法禁赛入门经典》 题目大意 本题的任务为模拟发送邮件时 MTA(邮件传输代理)之间的交互。所谓 MTA,就是 email地址格式 user@mtaname 的“后面部分”。当某人从 user1@mta1 ...
分类:
其他好文 时间:
2019-06-21 13:11:14
阅读次数:
118
文本属性 text-align:center 横向居中 line-helight:100px 文本行高,可设纵向居中 text-indent:150px 首行缩进 letter-spacing:10px 字符间距 word-spacing:20px 单词间距 text-transform:capit ...
分类:
Web程序 时间:
2019-06-19 00:20:46
阅读次数:
163
1 public class Solution 2 { 3 4 public string[] Permute(string S) 5 { 6 List> dic = new List>(); 7 int baseindex = 0; 8 var temp = S; ... ...
分类:
其他好文 时间:
2019-06-16 00:30:55
阅读次数:
97
题目如下: You have a set of tiles, where each tile has one letter tiles[i]printed on it. Return the number of possible non-empty sequences of letters you ...
分类:
其他好文 时间:
2019-06-15 10:20:42
阅读次数:
117