天天看点

CodeForces 143D Help General

Once upon a time in the Kingdom of Far Far Away lived Sir Lancelot, the chief Royal General. He was very proud of his men and he liked to invite the King to come and watch drill exercises which demonstrated the fighting techniques and tactics of the squad he was in charge of. But time went by and one day Sir Lancelot had a major argument with the Fairy Godmother (there were rumors that the argument occurred after the general spoke badly of the Godmother's flying techniques. That seemed to hurt the Fairy Godmother very deeply).

As the result of the argument, the Godmother put a rather strange curse upon the general. It sounded all complicated and quite harmless: "If the squared distance between some two soldiers equals to 5, then those soldiers will conflict with each other!"

The drill exercises are held on a rectangular n × m field, split into nm square 1 × 1 segments for each soldier. Thus, the square of the distance between the soldiers that stand on squares (x1, y1) and (x2, y2) equals exactly (x1 - x2)2 + (y1 - y2)2. Now not all nm squad soldiers can participate in the drill exercises as it was before the Fairy Godmother's curse. Unless, of course, the general wants the soldiers to fight with each other or even worse... For example, if he puts a soldier in the square (2, 2), then he cannot put soldiers in the squares (1, 4), (3, 4), (4, 1) and (4, 3) — each of them will conflict with the soldier in the square (2, 2).

Your task is to help the general. You are given the size of the drill exercise field. You are asked to calculate the maximum number of soldiers that can be simultaneously positioned on this field, so that no two soldiers fall under the Fairy Godmother's curse.

Input

The single line contains space-separated integers n and m (1 ≤ n, m ≤ 1000) that represent the size of the drill exercise field.

Output

Print the desired maximum number of warriors.

Example

Input

2 4

Output

4

Input

3 4

Output

6

Note

In the first sample test Sir Lancelot can place his 4 soldiers on the 2 × 4

In the second sample test he can place 6 soldiers on the 3 × 4

寻找规律,考虑到以国际象棋的棋盘颜色为准,马每次跳都会换颜色。

那么同一种颜色可以全部放上马而不碰撞。

同时考虑到棋盘较小时会发生的特殊情况,进行特判。

#include<bits/stdc++.h>
using namespace std;

int main()
{
    int n,m;
    cin>>n>>m;
    if(n>m) swap(n,m);
    if(n==1) printf("%d\n",m);
    else if(n==2)
    {
        /*
        if(m==2||m==3) printf("4\n");
        else printf("%d\n",m);
            */

        printf("%d\n",(m-1)/4*4+(m%4==1?2:4));
    }
    else
    {
        if((n*m)%2==0) printf("%d\n",n*m/2);
        else printf("%d\n",n*m/2+1);
    }
    return 0 ;
}      

继续阅读