CodeForces 592B The Monster and the Squirrel

来源:互联网 发布:利达华信主板数据备份 编辑:程序博客网 时间:2024/05/31 00:40
B. The Monster and the Squirrel
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Ari the monster always wakes up very early with the first ray of the sun and the first thing she does is feeding her squirrel.

Ari draws a regular convex polygon on the floor and numbers it's vertices 1, 2, ..., n in clockwise order. Then starting from the vertex 1 she draws a ray in the direction of each other vertex. The ray stops when it reaches a vertex or intersects with another ray drawn before. Ari repeats this process for vertex2, 3, ..., n (in this particular order). And then she puts a walnut in each region inside the polygon.

Ada the squirrel wants to collect all the walnuts, but she is not allowed to step on the lines drawn by Ari. That means Ada have to perform a small jump if she wants to go from one region to another. Ada can jump from one region P to another region Q if and only if P and Q share a side or a corner.

Assuming that Ada starts from outside of the picture, what is the minimum number of jumps she has to perform in order to collect all the walnuts?

Input

The first and only line of the input contains a single integer n (3 ≤ n ≤ 54321) - the number of vertices of the regular polygon drawn by Ari.

Output

Print the minimum number of jumps Ada should make to collect all the walnuts. Note, that shedoesn't need to leave the polygon after.

Examples
Input
5
Output
9
Input
3
Output
1
Note

One of the possible solutions for the first sample is shown on the picture above.

#include<iostream>  #include<algorithm>  #include<cstring>  #include<cstdio> #define T 54325   using namespace std;  typedef long long ll;  ll a[T];  void paly_table(){      for(int i=3;i<T;++i){          ll v = i-2;          a[i] = v*v;      }  }  int main(){      int n;      paly_table();      while(~scanf("%d",&n)){          printf("%I64d\n",a[n]);      }      return 0;  }  


0 0
原创粉丝点击