码迷,mamicode.com
首页 >  
搜索关键字:namespace    ( 41927个结果
计应191 西 张海鹏 第三组
using system;using system.collections.generic;using system.linq;using system.text;using system.threading.tasks; namespace consoleapplication3{ class p ...
分类:其他好文   时间:2021-06-02 19:26:24    阅读次数:0
Deltix Round, Spring 2021 (open for everyone, rated, Div. 1 + Div. 2)
#include <bits/stdc++.h> #define please return #define ac 0 using namespace std; using ll = long long ; bool vis[1003]; void solve() { int n,m; cin>>n ...
分类:编程语言   时间:2021-06-02 18:28:48    阅读次数:0
C# 反射调用dll中的方法
反射提供描述程序集、模块和类型的对象(Type 类型)。 可以使用反射动态地创建类型的实例,将类型绑定到现有对象,或从现有对象中获取类型,然后调用其方法或访问器字段和属性。 如果代码中使用了特性,可以利用反射来访问它们 namespace assembly_name { public class a ...
分类:Windows程序   时间:2021-06-02 18:18:16    阅读次数:0
dik
#include<bits/stdc++.h> using namespace std; const int N = 200000,Inf=0x7fffff; struct edge{ int u,v,w; edge(int a,int b,int c){ u=a,v=b,w=c; } }; vec ...
分类:其他好文   时间:2021-06-02 17:40:23    阅读次数:0
换根dp
#include <iostream> #include <vector> using namespace std; using ll = long long ; const int N=2e5+10; ll f[N],g[N],size1[N]; vector<int>gg[N]; void df ...
分类:其他好文   时间:2021-06-02 17:01:29    阅读次数:0
dd爱框框
dd爱框框 一道思维题,画过转换图之后会发现最多会出现四种矩阵,那么只需要判断最后是哪一种就好了。 同时对于连续的直接去重,因为两个连续相同的等于不操作。 #include <bits/stdc++.h> using namespace std; const int N = 1010; int a[ ...
分类:其他好文   时间:2021-06-02 16:40:21    阅读次数:0
CF 580E Kefa and Watch
#include<bits/stdc++.h> #define ull unsigned long long using namespace std; const int N=1000011; const ull St=233,M1=1000000007,M2=1000000009; int n,m ...
分类:其他好文   时间:2021-06-02 16:00:05    阅读次数:0
[ AGC006 D ] Median Pyramid Hard
题目 Atcoder 思路 代码 #include <iostream> using namespace std; const int N = 200010; int n, m, a[N], b[N]; int check(int mid) { for (int i = 1; i <= n * 2 ...
分类:其他好文   时间:2021-06-02 15:33:04    阅读次数:0
[ AGC006 E ] Rotate 3x3
题目 Atcoder 思路 代码 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 100010; int n, w[4][N], to[N], st[N]; ...
分类:其他好文   时间:2021-06-02 15:31:22    阅读次数:0
[ AGC006 F ] Blackout
题目 Atcoder 思路 代码 #include <iostream> #include <algorithm> #include <cstring> using namespace std; const int N = 100010, M = N << 1; int n, m; int h[N] ...
分类:其他好文   时间:2021-06-02 15:30:41    阅读次数:0
41927条   上一页 1 ... 6 7 8 9 10 ... 4193 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!