博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 3276 Face The Right Way
阅读量:4981 次
发布时间:2019-06-12

本文共 2791 字,大约阅读时间需要 9 分钟。

传送门:http://poj.org/problem?id=3276

Face The Right Way
Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions: 4504   Accepted: 2086

Description

Farmer John has arranged his N (1 ≤ N ≤ 5,000) cows in a row and many of them are facing forward, like good cows. Some of them are facing backward, though, and he needs them all to face forward to make his life perfect.

Fortunately, FJ recently bought an automatic cow turning machine. Since he purchased the discount model, it must be irrevocably preset to turn K (1 ≤ K ≤ N) cows at once, and it can only turn cows that are all standing next to each other in line. Each time the machine is used, it reverses the facing direction of a contiguous group of K cows in the line (one cannot use it on fewer than K cows, e.g., at the either end of the line of cows). Each cow remains in the same *location* as before, but ends up facing the *opposite direction*. A cow that starts out facing forward will be turned backward by the machine and vice-versa.

Because FJ must pick a single, never-changing value of K, please help him determine the minimum value of K that minimizes the number of operations required by the machine to make all the cows face forward. Also determine M, the minimum number of machine operations required to get all the cows facing forward using that value of K.

Input

Line 1: A single integer: 
N 
Lines 2..
N+1: Line 
i+1 contains a single character, 
F or 
B, indicating whether cow 
i is facing forward or backward.

Output

Line 1: Two space-separated integers: 
K and 
M

Sample Input

7BBFBFBB

Sample Output

3 3

Hint

For 
K = 3, the machine must be operated three times: turn cows (1,2,3), (3,4,5), and finally (5,6,7);
这是翻转问题,
1. 如果第一个是方向相反,那么必须翻转,同理第二个第二头牛同上。
2.如果翻转次数为奇数,那么该牛需要翻转,否则不必要翻转。
3.在最后末尾的时候,即距离最后一个差k-1个的时候,就检测最后几个是否全部为正确的方向,如果最后k-1个不全为正确的方向,那么这种翻转方法不行,反之则行。
这是看书的解题思路的来的,深深的感到了智商的碾压。有点灰心。
1 #include 
2 #include
3 #include
4 using namespace std; 5 6 const int MAX_N=6000; 7 int dir[MAX_N],f[MAX_N]; 8 int N; 9 10 int calc(int k )11 {12 int res=0;13 int sum=0;14 memset(f,0,sizeof(f));15 16 for(int i=0; i+k<=N; i++){17 if((sum+dir[i])%2!=0){18 res++;19 f[i]=1;20 }21 sum+=f[i];22 23 if(i-k+1>=0)24 sum-=f[i-k+1];25 26 }27 28 for(int i=N-k+1; i
=0){32 sum-=f[i-k+1];33 }34 35 }36 return res;37 }38 39 void solve()40 {41 int K=1, M=N;42 for(int k=1; k<=N; k++){43 44 int m=calc(k);45 if(m>=0&&m
>N;56 for(int i=0; i
>tmp;59 tmp=='F'?dir[i]=0:dir[i]=1;60 }61 solve();62 return 0;63 }

 

转载于:https://www.cnblogs.com/IKnowYou0/p/6159349.html

你可能感兴趣的文章
windows下配置nginx+php环境
查看>>
阿里云时间服务器
查看>>
流密码_电子科大慕课笔记_七八讲
查看>>
Mac系统下安装ipython分别支持python2和python3
查看>>
数学图形(1.45)毛雷尔玫瑰(Maurer rose)
查看>>
python中的关键字---3(内置函数)
查看>>
移动端键盘定制
查看>>
CodeForces 893C (并查集板子题)
查看>>
laravel数据迁移
查看>>
POJ 1316 Self Numbers
查看>>
python标准库之zipfile
查看>>
最短路径-迪杰斯特拉算法(Dijkstra) (简单讲解
查看>>
Redis批量删除脚本
查看>>
lightoj 1061 - N Queen Again(状压dp)
查看>>
codeforces 830 B. Cards Sorting(线段树)
查看>>
linux设置密码过期时间/etc/login.defs
查看>>
Hello World!
查看>>
权限认证
查看>>
VS2012 cocos2d-x-2.1.4及创建跨平台项目
查看>>
用Intent实现activity的跳转
查看>>