题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6286 Given a,b,c,d, find out the number of pairs of integers (x,y) where a≤x≤b,c≤y≤d and x?y is a multi ...
分类:
其他好文 时间:
2019-08-30 20:51:21
阅读次数:
119
Twin Primes Twin primes are pairs of primes of the form (p; p + 2). The term \twin prime" was coined by PaulStckel (1892-1919). The rst few twin prime ...
分类:
其他好文 时间:
2019-08-29 09:21:43
阅读次数:
65
Given a linked list, swap every two adjacent nodes and return its head. Example: Note: Your algorithm should use only constant extra space. You may no ...
分类:
其他好文 时间:
2019-08-27 01:15:11
阅读次数:
127
"no-alert": 0,//禁止使用alert confirm prompt "no-array-constructor": 2,//禁止使用数组构造器 "no-bitwise": 0,//禁止使用按位运算符 "no-caller": 1,//禁止使用arguments.caller或argum... ...
分类:
其他好文 时间:
2019-08-26 15:28:05
阅读次数:
75
Chika and Friendly Pairs Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 524288/524288 K (Java/Others)Total Submission(s): 1164 Accepted Submissi ...
分类:
编程语言 时间:
2019-08-17 18:28:08
阅读次数:
122
题意:给你一个数组,对于第i个数来说,如果存在一个位置j,使得j i并且a[j] k include include using namespace std; const int maxn=27005; const int maxv=maxn 3; typedef long long ll; ll ...
分类:
其他好文 时间:
2019-08-13 20:52:35
阅读次数:
73
Find the result of the following code: long long pairsFormLCM( int n ) { long long res = 0; for( int i = 1; i <= n; i++ ) for( int j = i; j <= n; j++ ...
分类:
其他好文 时间:
2019-08-13 00:17:31
阅读次数:
83
题目链接:https://vjudge.net/problem/CodeForces-1156B 题意:给定一串字符,相邻字符的ASCII码不能是相邻的数字,比如ABC,假设ASCII码为,99 100 101 , 就是不符合题意的字符串,ACF,就可以。 思路:从相邻字符的ASCII码不能是相邻的 ...
分类:
其他好文 时间:
2019-08-09 01:51:31
阅读次数:
147
https://leetcode.com/problems/generate-parentheses/ Medium Medium Medium Given n pairs of parentheses, write a function to generate all combinations o ...
分类:
其他好文 时间:
2019-08-04 19:39:29
阅读次数:
95