
反思
文章平均质量分 57
lanadeus
这个作者很懒,什么都没留下…
展开
-
2017年四川省赛記錄與反思
2017年省賽在樂山師範學院,時間是2017.6.3~2017.6.4,兩天。第一天是報道日,提供午飯晚飯,下午15:30~18:00熱身賽。第二天上午9:00正式開賽,14:00結束。15:30開始頒獎典禮。第一天7點30起牀,把模板整理了一下,做成PDF拿到店裏去打印。集訓隊9:15在校門口集合,去地鐵乘車。大一有兩個隊,和張老闆因爲要考高數,不能在上午和我們一起去。他們需要晚上21:30考完高原创 2017-06-06 15:22:31 · 387 阅读 · 0 评论 -
BNU-51645-ACM Battle-DFS
LinkI have to write some english.Analysis of the problem will be added after while.The key idea is to enumerate the edges but not vertice!Code:#include<bits/stdc++.h> #define mp(a,b) make_pair(a,b) #de原创 2017-09-30 17:10:11 · 285 阅读 · 0 评论 -
HDU - 6214 - Smallest Minimum Cut - 最大流
链接Dinic模板。将每条边容量乘上一个大数再加1,跑一次最大流。然后将最大流模这个大数,能获得最小割的边数。#include<iostream> #include<cstring> #include<string> #include<vector> #include<queue> using namespace std; typedef long long ll;const int inf = 0原创 2017-10-01 16:26:22 · 255 阅读 · 0 评论