这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include using namespace std; const int INF = 0x3fffffff; const int maxn = 2505; const int maxm = 6205; int n, m, s, t; int dis[maxn]; struct edge{ int u…
在讨论《啊啊蒟蒻求助大佬啊啊啊啊啊啊!!!!!!!!!!!》回复:
@[ToastBread](/user/545809) (・∀・(・∀・(・∀・*) 欸?
Bellman_Ford和SPFA都没过(已去逝) ```cpp //Bellman_Ford //只过了一半(っ °Д °;)っ #include using namespace std; const int maxn = 10005; const int maxm = 500005; int n, m, s; in…
```cpp #include using namespace std; int L, n, m; int d[50001]; int ans = 0; bool check(int dist){ int now = 0; int cnt = 0; for(int i=1; i >L>>n>>m; for(int i=…
在讨论《求助大佬》回复:
@[Augenstern5](/user/677609) Danke schön!
```cpp #include using namespace std; int n, m, u, v; int tun[1005][1005]; int ans = 0, sum = 0; int cnt[1005], b[1005]; void dfs(int now){ if(now == v){ sum++;…