博客迁移计划12 \(\rightarrow\) 戳我看CF原题 C. Useful Decomposition time limit per test: 1 second memory limit per test: 256 megabytes input: standard input outp ...
分类:
其他好文 时间:
2021-03-30 13:14:19
阅读次数:
0
<%-- Created by IntelliJ IDEA. User: Dell Date: 2021/3/27 Time: 19:51 To change this template use File | Settings | File Templates. --%> <%@ page cont ...
分类:
Web程序 时间:
2021-03-30 13:10:55
阅读次数:
0
Reconstruct Original Digits from English (M) 题目 Given a non-empty string containing an out-of-order English representation of digits 0-9, output the d ...
分类:
其他好文 时间:
2021-03-30 13:01:57
阅读次数:
0
很明显之前学的方式 手动配置还是不够方便。就需要我们去学习Spring的自动装配! #autowire="byName" 定义几个简单类 package Demo; public class Cat { public void shout(){ System.out.println("miao~") ...
分类:
编程语言 时间:
2021-03-29 12:52:06
阅读次数:
0
1.logging模块输出日志 import logging as logger import time import datetime print(time.localtime(),datetime.datetime.now()) print(datetime.datetime.now().str ...
分类:
编程语言 时间:
2021-03-29 12:49:43
阅读次数:
0
多态的概述 什么是多态 同一个对象,在不同时刻表现出来的不同形态 多态的前提 1.要有继承或实现关系 2.要有方法的重写 3.要有父类引用指向子类对象 代码演示 class Animal { public void eat() { System.out.println("动物吃饭"); } } cl ...
分类:
编程语言 时间:
2021-03-29 12:34:46
阅读次数:
0
题面 https://www.luogu.com.cn/problem/P6622 分析 枚举每个信号塔的位置显然不行,考虑设置 DP 状态 f[S] 表示选择了集合为 S 的塔,排在前 |S| 个位置 方程则为 $f[S|i]=f[S]+h[S,i]$ $h[S,i]$ 表示 S 中与 i 有连边 ...
分类:
其他好文 时间:
2021-03-29 12:31:50
阅读次数:
0
渲染数据时,有时候往往需要把最新的那条数据放在最上面,最简单的方法就是在渲染之前把数据先倒序排列好,再渲染到网页上。 这时就要用到reverse()。 <div class="list" v-for="(item,index) in reverseSum" :key="index> <ul > <l ...
分类:
Web程序 时间:
2021-03-29 12:27:58
阅读次数:
0
题目描述: Transformation Time Limit: 15000/8000 MS (Java/Others) Memory Limit: 65535/65536 K (Java/Others)Total Submission(s): 14738 Accepted Submission(s ...
分类:
其他好文 时间:
2021-03-29 12:26:43
阅读次数:
0
1.Android app抓取日志(DDMS) 安装SDK环境 运行手机上的app查看日志即可 2.日志定位,抓取错误 遇到应用crash的错误,输入adb logcat -v time >保存的文件路径 根据关键字fatal exception 和报错时间定位错误 从E开始到E结束 遇到anr错误 ...
分类:
移动开发 时间:
2021-03-29 12:19:15
阅读次数:
0