这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include #include #define N 1001 using namespace std; struct ROW { long long int t,stay; int m; }r[N]; bool cmp(ROW a,ROW b) { return a.t < b.t; } int ma…
在讨论《蒟蒻42分贪心求教》回复:
@[sam上帝](/space/show?uid=122822) 谢谢**dalao**,过了( ̄▽ ̄)/
在讨论《蒟蒻42分贪心求教》回复:
@[sam上帝](/space/show?uid=122822) 为什么要从 **1** 开始
在讨论《蒟蒻42分贪心求教》回复:
@[sam上帝](/space/show?uid=122822) 不对,还是错4个 [](https://www.luogu.org/recordnew/show/16040376)
在讨论《蒟蒻42分贪心求教》回复:
@[sam上帝](/space/show?uid=122822) emmmm.....我试试
在讨论《蒟蒻42分贪心求教》回复:
@[sam上帝](/space/show?uid=122822) long long 和long long int 有区别吗?
**代码贴上** ```cpp #include #include #define N 1000000 using namespace std; struct Thing{long long int b,e;}thing[N]; bool cmp(Thing a,Thing b) { return a.e < b.e;…
```cpp #include #include #include #define M 0x3B9ACA07 #define N 801 using namespace std; int main() { int dp[N][N][16][2]; int map[N][N]; int n,m,p,ans = 0; me…
在讨论《初触bfs,求指教》回复:
@[zws666](/space/show?uid=119959) emmmmmm....知道了,谢谢大佬指教
在讨论《初触bfs,求指教》回复:
@[zws666](/space/show?uid=119959) 我不认为深搜不好,但我想练一下广搜
在讨论《初触bfs,求指教》回复:
我想学广搜。。|@[lqhsr](/space/show?uid=111197)
在讨论《[拍照留念]这可能是讨论区最空的时候了》回复:
。。。
```cpp #include #include #define tpyl 1000 using namespace std; int map[tpyl][tpyl]; int tx[4]={0,0,1,-1}; int ty[4]={1,-1,0,0}; int find(int x,int y) { for(int…
在文章《初赛备考干货:P问题,NP问题,NP-hard问题,NPC问题,傻傻分不清楚?》发表评论:
p=np是千禧年十大难题之一||orz
```cpp #include #include #include using namespace std; struct custom { string a; int day; }man[100000]; bool cmp(custom a,custom b) { return a.day >man[i].a; ci…
```cpp #include #include #include using namespace std; int main() { int f[200001]={0},k[10000]={0},p[10000]={0}; int n,minn=-9999,maxn=0; scanf("%d",&n); for(in…
这是什么意思? ```cpp comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string ::size_type’ {aka ‘long unsigned int’} ```
在讨论《蒟蒻求助》回复:
@[namespace_std](/space/show?uid=85053) 改了后也不对
在讨论《蒟蒻求助》回复:
@[namespace_std](/space/show?uid=85053) 噗~
```cpp #include #include #include #define maxn 500 using namespace std; string s[maxn][maxn]; int n,top; int main() { string p,q; int lin=-1; scanf("%d",&n); fo…
在讨论《洛谷中到底有多少死宅》回复:
1
在讨论《求助于大佬》回复:
@[I_am_gone__________](/space/show?uid=81708) 试过了,还是不行
在讨论《三个点没过,Kruskal算法》回复:
@[Alpha](/space/show?uid=87058) 还是数组开小了,谢谢dalao
```cpp #include #include #include using namespace std; const int maxn=100005; struct Edge{int x,y,z;}a[maxn]; int n,m,prt[maxn],ans=0,bj; bool cmp(const Edge &x…
在讨论《2018俄罗斯足球世界杯讨论专区》回复:
0点打卡
```cpp #include using namespace std; int cmp(int a,int b) { if (a==0&&b==0) return -1; if (a==0&&b==1) return 0; if (a==0&&b==2) return 1; if (a==0&&b==3) retur…