摘要:
#include <iostream>#include <algorithm>#include <cstring>using namespace std;const int N=510,M=10010;int n,m,k;int dist[N],backup[N];struct Edge{ int 阅读全文
posted @ 2021-11-30 22:47
小白QIU
阅读(32)
评论(0)
推荐(0)
摘要:
#include <iostream>using namespace std;const int N=1e6+10;int n;int q[N];void quick_sort(int q[],int l,int r){ if(l>=r) return ; int x=q[l],i=l-1,j=r+ 阅读全文
posted @ 2021-11-30 18:20
小白QIU
阅读(46)
评论(0)
推荐(0)