Codeforces Round #203 (Div. 2) 水果3题
程序员文章站
2022-05-10 21:48:56
...
Codeforces Round #203 (Div. 2) 这场在最后千钧一发交了一发过了C,不然又要掉rating了。。。 B敲了太久了,orz编码能力不足
Codeforces Round #203 (Div. 2)
这场在最后千钧一发交了一发过了C,不然又要掉rating了。。。
B敲了太久了,orz编码能力不足啊~
A - TL
求编程比赛的时限,使得正确答案都能过,错误答案都不能过,且至少有一个正确答案的时间能小于时限的一半。
模拟水题,看题目看了好久。。
代码:
/* * Author: illuz* Blog: http://blog.csdn.net/hcbbt * File: a.cpp * Create Date: 2013-10-01 23:38:47 * Descripton: a */ #include #include using namespace std; #define rep(i, n) for (int i = 0; i > n >> m; rep(i, n) { cin >> t; Mina = min(Mina, t); Maxa = max(Maxa, t); } rep(i, m) { cin >> t; Minb = min(Minb, t); } if (Mina * 2 >= Minb || Minb B - Resort
要找一条到达hotel的最长的路,注意路上不能有分叉且路是又向的。
直接dfs+剪枝就行了,图用set存的。。。看别人用一维数组好神。
代码:
/* * Author: illuz* Blog: http://blog.csdn.net/hcbbt * File: b.cpp * Create Date: 2013-10-02 00:17:29 * Descripton: b */ #include #include #include #include #include using namespace std; #define rep(i, n) for (int i = 0; i pre[MAXN], nex[MAXN]; int n, t, obj[MAXN], path[MAXN]; int d[MAXN], used[MAXN]; int Max = 0, rec; int dp(int o) { if (d[o] != -1) return d[o]; if (nex[o].size() > 1 || used[o]) return d[o] = 0; if (pre[o].size() == 0) { path[o] = 0; return d[o] = 1; } d[o] = 0; used[o] = 1; FI(i, pre[o]) { int ts = dp(*i); if (ts > d[o]) { d[o] = ts; path[o] = *i; } } return d[o] + 1; } void F(int p, int cnt) { if (p == 0) return; F(path[p], cnt + 1); if (cnt) printf("%d ", p); else printf("%d\n", p); } int main() { ms(d, -1); scanf("%d", &n); rep(i, n) { scanf("%d", &obj[i + 1]); } rep(i, n) { scanf("%d", &t); if (t) { pre[i + 1].insert(t); nex[t].insert(i + 1); } } repf(i, 1, n) if (obj[i]) { t = dp(i); if (Max C - Bombs
排雷,给出几个雷的地点,挖出那些雷回到原点炸掉。
本来做出b题血槽就已近空了,还有20多分钟,在qq闲侃了几句,无聊过来看看c题,发现是大水题。。。
按距离排下序输出就行了。
代码:
/* * Author: illuz* Blog: http://blog.csdn.net/hcbbt * File: c.cpp * Create Date: 2013-10-02 01:14:06 * Descripton: c */ #include #include #include using namespace std; #define rep(i, n) for (int i = 0; i > n; LL cnt = 0; rep(i, n) { scanf("%d%d", &p[i].x, &p[i].y); p[i].step = abs(p[i].x) + abs(p[i].y); if (p[i].x) cnt+= 2; if (p[i].y) cnt+=2; cnt += 2; } sort (p, p + n, cmp); cout 0) printf("1 %d R\n", p[i].x); else if (p[i].x 0) printf("1 %d U\n", p[i].y); else if (p[i].y 0) printf("1 %d L\n", p[i].x); else if (p[i].x 0) printf("1 %d D\n", p[i].y); else if (p[i].y
上一篇: Django配置让其他电脑访问网站
下一篇: 请问一个关于php及html的有关问题
推荐阅读
-
Codeforces Round #595 (Div. 3)D1D2 贪心 STL
-
A. Add Odd or Subtract Even(思维题) Codeforces Round #624 (Div. 3)
-
Educational Codeforces Round 60 (Rated for Div. 2) ----A - Best Subsegment(思维题)
-
构造思维+树形结构 Codeforces Round #612 (Div. 2) D题 Numbers on Tree
-
Codeforces Round #656 (Div. 3) (C、D题)
-
Codeforces Round #657 (Div. 2) C题
-
Codeforces Round #277.5 (Div. 2)(C题)_html/css_WEB-ITnose
-
第十五次训练:Educational Codeforces Round 72 (Rated for Div. 2) && Codeforces Round #582 (Div. 3)
-
B. Nastya Is Playing Computer Games---(水题模拟)Codeforces Round #546 (Div. 2)
-
Codeforces Round #257 (Div. 2) A. Jzzhu and Children(简单题)_html/css_WEB-ITnose