CF93A.Frames

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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, mm icons can fit in a horizontal row in any window.

Igor K.'s computer contains nn folders in the D: disk's root catalog. The folders are numbered from 11 to nn 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 aa to bb inclusive. 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 aa to bb 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.

输入格式

The only line contains four integers nn , mm , aa , bb ( 1<=n,m<=1091<=n,m<=10^{9} , 1<=a<=b<=n1<=a<=b<=n ). 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.

输出格式

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 aa to bb .

输入输出样例

  • 输入#1

    11 4 3 9
    

    输出#1

    3
    
  • 输入#2

    20 5 2 20
    

    输出#2

    2
    

说明/提示

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.

首页