zcmu Farmes 题解 水题

博客讲述了在Pindows XR操作系统中,如何在文件夹按行排列的情况下,最少框选多少次来选择并删除从a到b的文件夹。给出了三种可能的情况:一次、两次或三次,并提供了AC代码来解决这个问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

2188: Frames

Time Limit: 2 Sec  Memory Limit: 256 MB
Submit: 64  Solved: 26
[Submit][Status][Web Board]

Description

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Throughout Igor K.'s life he has had many situations worthy of attention. We remember the story with the virus, the story of his mathematical career and of course, his famous programming achievements. However, one does not always adopt new hobbies, one can quit something as well.

This time Igor K. got disappointed in one of his hobbies: editing and voicing videos. Moreover, he got disappointed in it so much, that he decided to destroy his secret archive for good.

Igor K. use Pindows XR operation system which represents files and folders by small icons. At that, m icons can fit in a horizontal row in any window.

Igor K.'s computer contains n folders in the D: disk's root catalog. The folders are numbered from 1 to n in the order from the left to the right and from top to bottom (see the images). At that the folders with secret videos have numbers from a to binclusive. Igor K. wants to delete them forever, at that making as few frame selections as possible, and then pressing Shift+Delete exactly once. What is the minimum number of times Igor K. will have to select the folder in order to select folders from a to b and only them? Let us note that if some selected folder is selected repeatedly, then it is deselected. Each selection possesses the shape of some rectangle with sides parallel to the screen's borders.

Input

The only line contains four integers nmab (1≤n,m≤109, 1≤abn). They are the number of folders in Igor K.'s computer, the width of a window and the numbers of the first and the last folders that need to be deleted.

Output

Print a single number: the least possible number of times Igor K. will have to select the folders using frames to select only the folders with numbers from a to b.

Examples

Input

11 4 3 9

Output

3

Input

20 5 2 20

Output

2

Note

The images below illustrate statement tests.

The first test:

In this test we can select folders 3 and 4 with out first selection, folders 5, 6, 7, 8 with our second selection and folder 9 with our third, last selection.

The second test:

In this test we can first select all folders in the first row (2, 3, 4, 5), then − all other ones.

题目大意:n个文件夹,按每行m个排列,从a号到b号最少要框几次,才能全部选中。

思路:很明显不管数目再多,都只有三种可能性,框一次,框两次和框三次。所以只要分析出前两种的判断条件其余就都是框三次了。

框一次:起点终点在同一行,起点在头并且终点在尾,m为1.

框二次:起点在头或终点在尾,起点终点行数差1。

else

框三次。

AC代码:

#include<iostream>
#include<queue>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
int main()
{
 int n,m,l,r;
 while(~scanf("%d %d %d %d",&n,&m,&l,&r))
 {
     int a=l/m;//起点所在的行数
     if(l%m!=0)
     a++;
     int b=r/m;//终点所在的行数
     if(r%m!=0)
        b++;

     if(a==b||m==1||l%m==1&&r%m==0)//
     {
         cout<<1<<endl;
     }
     else if(l%m==1||r%m==0||(b-a)==1||l%m-1==r%m)
        cout<<2<<endl;
     else
        cout<<3<<endl;
 }

    return 0;
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值