摘要:
#include<bits/stdc++.h> using namespace std; int main(){ int N,M; priority_queue <int,vector<int>,less<int> >q; cin >> N >> M; for( int i = 0; i < N; 阅读全文
摘要:
修建道路 #include<stdio.h> #include<string.h> #include<algorithm> using namespace std; int inf=0x3f3f3f; int map[105][105],dis[105],book[105]; int m,n; in 阅读全文