Book: A. Figalli 《The Monge Ampere Equation and Its Application》 1.Let $A,B\in R^{n\times n}$, and assume that $A$ is invertible. Then, $$\frac{d}{dt} ...
分类:
其他好文 时间:
2019-07-03 20:02:53
阅读次数:
105
http://acm.hdu.edu.cn/showproblem.php?pid=1001 解法一:暴力累加 解法二:求和公式 高斯十岁时就发现的方法。公式法:sum=n*(n+1)/2。可能在n*(n+1)乘法的时候,会溢出。看这句要求“You may assume the result wil ...
分类:
其他好文 时间:
2019-06-27 13:34:53
阅读次数:
115
4.1 一个源程序从写出到执行的过程 汇编语言源程序包含两种指令: 1.汇编指令 2.伪指令 汇编指令会被编译为机器指令,被CPU执行 伪指令不会,会被编译器执行 segment和ends的作用是定义一个段 end伪指令标记整个程序的结束 assume将有特定用途的段和相关的段寄存器关联起来 程序最 ...
分类:
其他好文 时间:
2019-06-20 22:38:18
阅读次数:
164
Given a string s, find the longest palindromic subsequence's length in s. You may assume that the maximum length of s is 1000. Example 1:Input: Output ...
分类:
其他好文 时间:
2019-06-16 09:23:59
阅读次数:
90
7 Reverse Integer Given a 32-bit signed integer, reverse digits of an integer. Example 1: Example 2: Example 3: Note:Assume we are dealing with an env ...
分类:
其他好文 时间:
2019-06-12 09:19:11
阅读次数:
90
Given an array of size n, find the majority element. The majority element is the element that appears more than ? n/2 ? times. You may assume that the ...
分类:
其他好文 时间:
2019-06-11 16:21:47
阅读次数:
94
题目 Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example1: & 8195; Input: "babad ...
分类:
其他好文 时间:
2019-06-09 09:53:14
阅读次数:
114
Robot Tour Guide Examples MDP Grid World Problems With Conventional Planning For this problem (and only this problem) assume actions are stochastic in ...
分类:
其他好文 时间:
2019-06-07 11:03:21
阅读次数:
88
1. Two Sum 两数之和 Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each inp ...
分类:
编程语言 时间:
2019-05-30 01:30:50
阅读次数:
127
第六章dw是定义字型数据,define word的缩写 assume cs:codecode segmentstart: dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h mov bx,0 mov ax,0 mov cx,8 s:add ax,cs ...
分类:
其他好文 时间:
2019-05-29 23:27:37
阅读次数:
159