码迷,mamicode.com
首页 >  
搜索关键字:define    ( 25272个结果
文件开启关闭操作c语言模板
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { FILE *fp = NULL; fp = fopen("./1.txt", "w+ ...
分类:编程语言   时间:2020-07-30 14:34:50    阅读次数:55
C++信息管理系统练习
音乐管理器 #include<iostream> #include<string> #include<unistd.h> using namespace std; #define MAX 300 //界面清空函数 void clear() { char buf[1024]={0}; cout<<"请 ...
分类:编程语言   时间:2020-07-30 01:44:14    阅读次数:80
Kruskal算法
#include <bits/stdc++.h> #define MAXN 200005 using namespace std; int node,edge,ans=0,k=0; int fat[MAXN],siz[MAXN]; struct EDGE { int from,to,cost; } ...
分类:编程语言   时间:2020-07-30 01:20:30    阅读次数:71
HDU - 1166 敌兵布阵
题目链接 维护一个单点修改,区间查询的数据结构,树状数组和线段树均可以。 我写了树状数组。 #include<bits/stdc++.h> using namespace std; #define lowbit(x) (x & (-x)) char s[10]; int n; long long c ...
分类:其他好文   时间:2020-07-29 21:56:16    阅读次数:86
HDU - 1754 I Hate It
题目链接 线段树,单点修改,区间最大值查询。 #include<bits/stdc++.h> using namespace std; const int N = 2e5 + 10; int n,m; #define mid ((l + r) >> 1) #define ls (nod << 1) ...
分类:其他好文   时间:2020-07-29 21:53:09    阅读次数:77
2020杭电多校第三场
1004.Tokitsukaze and Multiple 求和为p的倍数的块的最大数量 #include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i, a, b) for (register in ...
分类:其他好文   时间:2020-07-29 17:32:55    阅读次数:99
修改内置属性name
function foo() { }var oldName = foo.name;foo.name = "bar";[oldName, foo.name] ==> ["foo", "foo"] function foo() { }Object.defineProperty(foo,"name",{w ...
分类:其他好文   时间:2020-07-29 14:42:34    阅读次数:69
2020杭电多校第三场题解
2020 Multi-University Training Contest 3 施工中。。。 1004 Tokitsukaze and Multiple #include<bits/stdc++.h> #define ll long long #define maxn 100010 #define ...
分类:其他好文   时间:2020-07-29 14:30:59    阅读次数:162
二进制回文数
##输出1到n以内所有的二进制回文数 #include <stdio.h> #define SIZE 50 typedef enum bool Bool; enum bool { false, true }; int main() { int n, i, j; Bool flag = false; ...
分类:其他好文   时间:2020-07-29 10:02:00    阅读次数:84
Codeforces Round #659 (Div. 2)
A. Common Prefixes 题目链接 代码: #include<bits/stdc++.h> using namespace std; const int maxn = 1e6 + 10; #define ll long long #define ios std::ios::sync_wi ...
分类:其他好文   时间:2020-07-29 09:52:41    阅读次数:58
25272条   上一页 1 ... 47 48 49 50 51 ... 2528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!