水 A - Vasya the Hipster

/************************************************
* Author :Running_Time
* Created Time :2015/9/28 星期一 16:58:13
* File Name :A.cpp
************************************************/ #include <cstdio>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <cstring>
#include <cmath>
#include <string>
#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <list>
#include <map>
#include <set>
#include <bitset>
#include <cstdlib>
#include <ctime>
using namespace std; #define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1 | 1
typedef long long ll;
const int N = 1e5 + 10;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
const double EPS = 1e-8; int main(void) {
int a, b; scanf ("%d%d", &a, &b);
int ans = min (a, b);
printf ("%d ", ans);
a -= ans, b -= ans;
ans = a / 2 + b / 2;
printf ("%d\n", ans); return 0;
}

水 B - Luxurious Houses

从后往前,维护一个后缀最大值

/************************************************
* Author :Running_Time
* Created Time :2015/9/28 星期一 16:58:21
* File Name :B.cpp
************************************************/ #include <cstdio>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <cstring>
#include <cmath>
#include <string>
#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <list>
#include <map>
#include <set>
#include <bitset>
#include <cstdlib>
#include <ctime>
using namespace std; #define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1 | 1
typedef long long ll;
const int N = 1e5 + 10;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
const double EPS = 1e-8;
int a[N], mx[N], ans[N]; int main(void) {
int n; scanf ("%d", &n);
for (int i=1; i<=n; ++i) {
scanf ("%d", &a[i]);
}
mx[n] = a[n]; ans[n] = 0;
for (int i=n-1; i>=1; --i) {
if (a[i] <= mx[i+1]) {
ans[i] = mx[i+1] + 1 - a[i];
}
mx[i] = max (mx[i+1], a[i]);
} for (int i=1; i<=n; ++i) {
printf ("%d%c", ans[i], i == n ? '\n' : ' ');
} return 0;
}

  

贪心 C - Developing Skills

题意:给n个数,最多可以增加k,每个数上限为100,问max sum (a[i] / 10)

分析:若k很小时,优先加给需要最小数字能到下一个十整数的,按照这个规则排序。若还有多余则继续,此时每个数字加10,直到100或者k<=0,及时break。

/************************************************
* Author :Running_Time
* Created Time :2015/9/28 星期一 16:58:28
* File Name :C.cpp
************************************************/ #include <cstdio>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <cstring>
#include <cmath>
#include <string>
#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <list>
#include <map>
#include <set>
#include <bitset>
#include <cstdlib>
#include <ctime>
using namespace std; #define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1 | 1
typedef long long ll;
const int N = 1e5 + 10;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
const double EPS = 1e-8;
int a[N]; int cal(int x) {
if (x == 100) return 0;
int a = x / 10;
return (a + 1) * 10 - x;
} bool cmp(int x, int y) {
return cal (x) < cal (y);
} int main(void) {
int n, k; scanf ("%d%d", &n, &k);
for (int i=1; i<=n; ++i) {
scanf ("%d", &a[i]);
}
sort (a+1, a+1+n, cmp);
while (k > 0) {
bool up = false;
for (int i=1; i<=n; ++i) {
if (a[i] == 100) continue;
int dt = cal (a[i]);
if (dt > k || k <= 0) break;
if (dt <= k) {
k -= dt; a[i] += dt;
up = true;
}
}
if (!up) break;
} int ans = 0;
for (int i=1; i<=n; ++i) {
ans += a[i] / 10;
}
printf ("%d\n", ans); return 0;
}

  

模拟 D - Three Logos

题意:很好理解,就是三个矩形组合成一个正方形

分析:想到了很简单,无非就是两种情况,比赛时没想那么多,代码很挫,建议看图片就行了。。。

/************************************************
* Author :Running_Time
* Created Time :2015/9/28 星期一 17:39:02
* File Name :D.cpp
************************************************/ #include <cstdio>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <cstring>
#include <cmath>
#include <string>
#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <list>
#include <map>
#include <set>
#include <bitset>
#include <cstdlib>
#include <ctime>
using namespace std; #define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1 | 1
typedef long long ll;
const int N = 1e5 + 10;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
const double EPS = 1e-8; int main(void) {
int x[3], y[3];
for (int i=0; i<3; ++i) {
scanf ("%d%d", &x[i], &y[i]);
if (x[i] > y[i]) swap (x[i], y[i]);
}
int sx = x[0] + x[1] + x[2];
if (sx == y[0] && sx == y[1] && sx == y[2]) { //第一种情况
printf ("%d\n", sx);
for (int i=0; i<3; ++i) {
for (int j=1; j<=x[i]; ++j) {
for (int k=1; k<=y[i]; ++k) {
printf ("%c", i == 0 ? 'A' : (i == 1) ? 'B' : 'C');
}
puts ("");
}
}
}
else { //第二种情况
bool flag = false;
int n = 0, id = 0;
for (int i=0; i<3; ++i) {
if (n < y[i]) {
n = y[i]; id = i;
}
}
int tx = n - x[id];
for (int i=0; i<3; ++i) {
for (int j=0; j<3; ++j) {
if (i == id || j == id) continue;
if (x[i] == x[j] && x[i] == tx) {
if (y[i] + y[j] == n) {
flag = true; break;
}
}
else if (x[i] == y[j] && x[i] == tx) {
if (y[i] + x[j] == n) {
flag = true; break;
}
}
else if (y[i] == x[j] && y[i] == tx) {
if (x[i] + y[j] == n) {
flag = true; break;
}
}
else if (y[i] == y[j] && y[i] == tx) {
if (x[i] + x[j] == n) {
flag = true; break;
}
}
}
} if (flag) { //输出答案
printf ("%d\n", n);
for (int i=1; i<=x[id]; ++i) {
for (int j=1; j<=y[id]; ++j) {
printf ("%c", id == 0 ? 'A' : (id == 1) ? 'B' : 'C');
}
puts ("");
}
char p, q;
if (id == 0) p = 'B', q = 'C';
else if (id == 1) p = 'A', q = 'C';
else p = 'A', q = 'B';
for (int i=0; i<3; ++i) {
for (int j=0; j<3; ++j) {
if (i == id || j == id) continue;
if (x[i] == x[j] && x[i] == tx) {
if (y[i] + y[j] == n) {
for (int k=1; k<=tx; ++k) {
for (int l=1; l<=n; ++l) {
printf ("%c", l <= y[i] ? p : q);
}
puts ("");
}
return 0;
}
}
else if (x[i] == y[j] && x[i] == tx) {
if (y[i] + x[j] == n) {
for (int k=1; k<=tx; ++k) {
for (int l=1; l<=n; ++l) {
printf ("%c", l <= y[i] ? p : q);
}
puts ("");
}
return 0;
}
}
else if (y[i] == x[j] && y[i] == tx) {
if (x[i] + y[j] == n) {
for (int k=1; k<=tx; ++k) {
for (int l=1; l<=n; ++l) {
printf ("%c", l <= x[i] ? p : q);
}
puts ("");
}
return 0;
}
}
else if (y[i] == y[j] && y[i] == tx) {
if (x[i] + x[j] == n) {
for (int k=1; k<=tx; ++k) {
for (int l=1; l<=n; ++l) {
printf ("%c", l <= x[i] ? p : q);
}
puts ("");
}
return 0;
}
}
}
}
}
else puts ("-1");
} return 0;
}

 

最后老夫夜观星相,预测此次rating会超1700,为了能够在div2继续虐菜,“故意”hack失败。。

Codeforces Round #322 (Div. 2)的更多相关文章

  1. Codeforces Round #322 (Div. 2) D. Three Logos 暴力

    D. Three Logos Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/581/problem ...

  2. Codeforces Round #322 (Div. 2) C. Developing Skills 优先队列

    C. Developing Skills Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/581/p ...

  3. Codeforces Round #322 (Div. 2) B. Luxurious Houses 水题

    B. Luxurious Houses Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/581/pr ...

  4. Codeforces Round #322 (Div. 2) A. Vasya the Hipster 水题

    A. Vasya the Hipster Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/581/p ...

  5. Codeforces Round #322 (Div. 2) —— F. Zublicanes and Mumocrates

    It's election time in Berland. The favorites are of course parties of zublicanes and mumocrates. The ...

  6. Codeforces Round #322 (Div. 2) E F

    E. Kojiro and Furrari 题意说的是 在一条直线上 有n个加油站, 每加一单位体积的汽油 可以走1km 然后每个加油站只有一种类型的汽油,汽油的种类有3种 求从起点出发到达终点要求使 ...

  7. 树形dp - Codeforces Round #322 (Div. 2) F Zublicanes and Mumocrates

    Zublicanes and Mumocrates Problem's Link Mean: 给定一个无向图,需要把这个图分成两部分,使得两部分中边数为1的结点数量相等,最少需要去掉多少条边. ana ...

  8. Codeforces Round #322 (Div. 2) D. Three Logos 模拟

                                                      D. Three Logos Three companies decided to order a ...

  9. Codeforces Round #366 (Div. 2) ABC

    Codeforces Round #366 (Div. 2) A I hate that I love that I hate it水题 #I hate that I love that I hate ...

随机推荐

  1. 嵌入式开发之davinci---8148/8127/8168 中dsp c674的浮点和定点兼容

    c674: 是c67(浮点)+c64(定点) 兼容的 http://processors.wiki.ti.com/index.php/-mv_option_to_use_with_the_C674x ...

  2. 写入文本文件时“\n”不是回车换行而是个方块“■”的解决方法

    用“\n”写入文本文件时,打开文本文件显示的为什么不是回车换行而是个黑方块“■”,但用file()读取时还是认为是一行一行的? 首先在WINDOWS里回车换行是"\r\n"; 而L ...

  3. VUE 之 vuex 和 axios

    1.Vuex 部分 1.1 Vuex 是专门为vue.js设计的集中式状态管理架构,其实就是将数据存在一个store中,共各个组件共享使用 1.2 配置: 1.2.1 下载:--npm install ...

  4. Mongo.setReadPref(mode, tagSet) primaries and secondaries are treated equivalently. 读优先级策略

    https://docs.mongodb.com/manual/reference/method/Mongo.setReadPref/#Mongo.setReadPref Mongo.setReadP ...

  5. Struts2中Action接收参数

    Struts2中Action接收参数的方法主要有以下三种: Struts2中Action接收参数的方法主要有以下三种: 1.使用Action的属性接收参数:     a.定义:在Action类中定义属 ...

  6. 在Android Studio中修改应用包名

    紧凑模式下(包名中的每个字段紧贴在一起,例如),右键单击包名,Refactor -> Rename,只能修改包名最外层的字段 分离模式下(点击设置,将Hide Empty Middle Pack ...

  7. CWnd中PreCreateWindow、PreSubclassWindow、SubclassWindow

    原文链接:http://blog.chinaunix.net/uid-14607221-id-2794642.html 1. PreCreateWindow: Called by the framew ...

  8. navcat for mysql 连接远程数据库 教程

    1.首先进入数据库: mysql -uroot -p 2.然后打开数据库设置远程连接权限: mysql>GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%'ID ...

  9. 织梦dedecms内页分类频道友情链接实现方法

    本文介绍了织梦dedecms中内页分类频道加友情链接的三种方法,有需要的朋友参考下. 织梦dedecms中内页分类频道加友情链接,方法有三种: 先讲方法,后讲原理: 方法:先找到首页模版index.h ...

  10. MYSQL进阶学习笔记三:MySQL流程控制语句!(视频序号:进阶_7-10)

    知识点四:MySQL流程控制语句(7-10) 选择语句: (IF ELSE ELSE IF CASE 分支)IFNULL函数 IF语法: 语法规则: IF search_condition THEN ...