PAT 甲级 Advanced 1037 Magic Coupon (25) [贪?算法] ...
分类:
编程语言 时间:
2020-01-30 21:26:35
阅读次数:
95
题目链接:https://ac.nowcoder.com/acm/contest/3570/H #include <iostream> #include <algorithm> #include <string> #include <string.h> #include <vector> #incl ...
分类:
其他好文 时间:
2020-01-29 21:19:01
阅读次数:
132
CF1110E Magic Stones 题目描述 一次操作选择1<i<n,使 $ c_i $ 变为 $ c_i = c_{i-1} + c_{i+1} - c_i $ 是否能做若干次操作,使每个 $ c_i $ 和 $ t_i $ 相等? 数据范围: ...
分类:
其他好文 时间:
2020-01-29 00:45:43
阅读次数:
65
bzoj 2553: [BeiJing2011]禁忌 Description Magic Land上的人们总是提起那个传说:他们的祖先John在那个东方岛屿帮助Koishi与其姐姐Satori最终战平。而后,Koishi恢复了读心的能力…… 如今,在John已经成为传说的时代,再次造访那座岛屿的人们 ...
分类:
其他好文 时间:
2020-01-28 14:11:03
阅读次数:
78
``` 30) { $current =$this->$property; //notice: $this->property(without $) will create a new attribute called property, $property $this->$property= $v... ...
分类:
Web程序 时间:
2020-01-27 20:43:06
阅读次数:
121
1058 A+B in Hogwarts (20分) 题目: If you are a fan of Harry Potter, you would know the world of magic has its own currency system as Hagrid explained it ...
分类:
其他好文 时间:
2020-01-27 00:20:32
阅读次数:
91
多线程查找文件内容 遍历所有文件,当遍历到文件名是.java结尾的时候,创建一个线程去查找这个文件的内容(是否包含“Magic”字符串),不必等待这个线程结束,继续遍历下一个文件。 1 package multiplethread; 2 3 import java.io.BufferedReader ...
分类:
编程语言 时间:
2020-01-25 19:36:47
阅读次数:
79
1 谈谈你对http协议的认识。 2 谈谈你对websocket协议的认识。 3 什么是magic string ? 4 列举Http请求中常见的请求方式? 5 列举Http请求中的状态码? 6 列举Http请求中常见的请求头? 7 django、flask、tornado框架的比较? 8 什么是w ...
分类:
编程语言 时间:
2020-01-25 14:09:37
阅读次数:
95
为什么要对1000000007取模(取余) 来看这篇博客的基本上都是和我一样脑子有坑的人,要么就是看了我某篇大数阶乘,大数的排列组合等类似博客被忽悠过来的。我刚刚说到那些类型的题目一般都要求将输出结果对1000000007取模(取余) 为什么总是1000000007呢= _= ? 我估计啊因该是这几 ...
分类:
其他好文 时间:
2020-01-24 22:32:01
阅读次数:
98
Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...) which sum to n. Example 1: Input: n = 12 O ...
分类:
其他好文 时间:
2020-01-21 18:22:25
阅读次数:
90