码迷,mamicode.com
首页 >  
搜索关键字:not-define    ( 25272个结果
【leetcode】343. 整数拆分
#define max(a,b) ((a)>(b))?(a):(b) int integerBreak(int n){ int dp[58]={0}, i, j; dp[1]=1; for(i=2; i<=n; i++){ for (j=1; j<=i/2; j++){ dp[i]= max( dp ...
分类:其他好文   时间:2021-01-29 11:57:46    阅读次数:0
Cleaning the Phone
链接 : https://codeforces.com/contest/1475/problem/D 排序 + 双指针 #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.t ...
分类:其他好文   时间:2021-01-28 12:04:58    阅读次数:0
suiteCRM____Admin
1. Individual users只能set up自己的个人账号,admin可以从User Management为其他用户set up个人账号(右上角下拉菜单中选Admin) 2. Securitly Groups:define groups of users with particular a ...
分类:其他好文   时间:2021-01-28 11:52:12    阅读次数:0
微信小程序 Error: module "pages/XXX/console.js" is not defined
写着代码保存后,突然??? 内存爆了,CPU线程也爆了,特 别 的 卡 .... 强制关闭进程后,再次打开微信小程序开发工具,就出现了下面的错误... 简直莫名其妙 本着缺什么给什么的原则,在报错的位置创建了一个console.js 神奇的是,好了......??? 可是这也不是正常的解决方法,因为 ...
分类:微信   时间:2021-01-27 13:09:28    阅读次数:0
链表归并排序
题目描述 在O(n log n)的时间内使用常数级空间复杂度对链表进行排序。 示例1 输入 复制 {30,20,40} 返回值 复制 {20,30,40} 说明:本题目包含复杂数据结构ListNode,点此查看相关信息 #define null NULL #define Node ListNode ...
分类:编程语言   时间:2021-01-26 12:21:33    阅读次数:0
E 牛牛数数 线性基+二分
1 #include <bits/stdc++.h> 2 3 using namespace std; 4 #define ENDL "\n" 5 typedef long long ll; 6 typedef pair<int, int> pii; 7 const int inf = 0x7fff ...
分类:其他好文   时间:2021-01-26 12:07:05    阅读次数:0
POJ2406 Power Strings(循环节)
Power Strings Description Given two strings a and b we define a*b to be their concatenation. For example, if a = "abc" and b = "def" then a*b = "abcde ...
分类:其他好文   时间:2021-01-26 11:47:12    阅读次数:0
qt 定义插件
定义的接口 #ifndef REGEXPINTERFACE_H #define REGEXPINTERFACE_H #include <QString> class RegExpInterface { public: virtual ~RegExpInterface() { } virtual QS ...
分类:其他好文   时间:2021-01-25 10:51:17    阅读次数:0
Codeforces Round #695 (Div. 2)
A 9,98,989,9890...... #include <bits/stdc++.h> #define rep(i,j,k) for (int i = j; i <= k; i++) #define dow(i,j,k) for (int i = j; i >= k; i--) #define ...
分类:其他好文   时间:2021-01-22 12:10:17    阅读次数:0
李超线段树
参考: https://oi-wiki.org/ds/li-chao-tree/ 例题: P4097 [HEOI2013]Segment #include<bits/stdc++.h> #define db double const int p=39989; using namespace std; ...
分类:其他好文   时间:2021-01-18 11:39:35    阅读次数:0
25272条   上一页 1 ... 23 24 25 26 27 ... 2528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!