
uestc
永远热血沸腾
这个作者很懒,什么都没留下…
展开
-
uestc 594 我要长高 单调队列优化
/* *********************************************** Author :xryz Email :xiang578@foxmail.com Blog :htttp://www.xiang578.top Created Time :10-22 20:22:55 File Name :uestc594.原创 2015-10-22 22:58:55 · 519 阅读 · 0 评论 -
uestc 1222 Sudoku 搜索
#include<stdio.h> #include<algorithm> #include<string.h> #include<math.h> #include<bits/stdc++.h> using namespace std;int g[200][200]; int r[200][200]; int c[200][200]; int mp[200][200]; char s[200][20原创 2015-12-03 17:42:35 · 326 阅读 · 0 评论 -
uestc 482 Charitable Exchange 广搜+优先队列优化
用优先队列对花费时间进行从大到小排序#include<bits/stdc++.h> using namespace std; const int N=100000+1; typedef long long ll; struct edge { ll u,v,w; }g[N]; struct node { ll m,t; friend bool operator <(node n原创 2016-03-14 10:00:43 · 457 阅读 · 0 评论