CodeForces - 404B(類比題)

來源:互聯網
上載者:User

標籤:

Marathon
Time Limit: 1000MS   Memory Limit: 262144KB   64bit IO Format: %I64d & %I64u

Submit Status

Description

Valera takes part in the Berland Marathon. The marathon race starts at the stadium that can be represented on the plane as a square whose lower left corner is located at point with coordinates (0, 0) and the length of the side equals a meters. The sides of the square are parallel to coordinate axes.

As the length of the marathon race is very long, Valera needs to have extra drink during the race. The coach gives Valera a bottle of drink eachd meters of the path. We know that Valera starts at the point with coordinates (0, 0) and runs counter-clockwise. That is, when Valera coversa meters, he reaches the point with coordinates (a, 0). We also know that the length of the marathon race equals nd + 0.5 meters.

Help Valera‘s coach determine where he should be located to help Valera. Specifically, determine the coordinates of Valera‘s positions when he covers d, 2·d, ..., n·d meters.

Input

The first line contains two space-separated real numbers a and d(1 ≤ a, d ≤ 105), given with precision till 4 decimal digits after the decimal point. Number a denotes the length of the square‘s side that describes the stadium. Number d shows that after each d meters Valera gets an extra drink.

The second line contains integer n(1 ≤ n ≤ 105) showing that Valera needs an extra drink n times.

Output

Print n lines, each line should contain two real numbers xi and yi, separated by a space. Numbers xi and yi in the i-th line mean that Valera is at point with coordinates (xi, yi) after he covers i·d meters. Your solution will be considered correct if the absolute or relative error doesn‘t exceed 10 - 4.

Note, that this problem have huge amount of output data. Please, do not use cout stream for output in this problem.

Sample Input

Input
2 5
2
Output
1.0000000000 2.0000000000
2.0000000000 0.0000000000
Input
4.147 2.8819
6
Output
2.8819000000 0.0000000000
4.1470000000 1.6168000000
3.7953000000 4.1470000000
0.9134000000 4.1470000000
0.0000000000 2.1785000000
0.7034000000 0.0000000000

Source

Codeforces Round #237 (Div. 2)

題目大意:跑馬拉松,有人給遞水。場地是一個邊長為a米的正方形(逆時針跑),
每隔k米就喝一píng水,總共有npíng水。問每次喝水的位置座標。
題目分析:先把k減到一圈以下,然後就能保證不TLE了。隨意類比即可。

#include<stdio.h>int main(){    double a,d,posx,posy,dd;    int n,con;    while(scanf("%lf%lf%d",&a,&dd,&n)!=EOF)    {//1右2上3左4下        con=1;        posx=posy=0;        while(dd>=4*a)dd-=4*a;        d=dd;        while(n--)        {            switch(con)            {                case 1:                {                    if(posx+d<=a)                    {                        posx+=d;                        printf("%.10f %.10f\n",posx,posy);                        d=dd;                    }                    else                    {                        d-=a-posx;                        posx=a;                        n++;                        con++;                    }                    break;                }                case 2:                {                    if(posy+d<=a)                    {                        posy+=d;                        printf("%.10f %.10f\n",posx,posy);                        d=dd;                    }                    else                    {                        d-=a-posy;                        posy=a;                        n++;                        con++;                    }                    break;                }                case 3:                {                    if(posx-d>=0)                    {                        posx-=d;                        printf("%.10f %.10f\n",posx,posy);                        d=dd;                    }                    else                    {                        d-=posx;                        posx=0;                        n++;                        con++;                    }                    break;                }                case 4:                {                    if(posy-d>=0)                    {                        posy-=d;                        printf("%.10f %.10f\n",posx,posy);                        d=dd;                    }                    else                    {                        d-=posy;                        posy=0;                        n++;                        con=1;                    }                    break;                }            }        }    }    return 0;}

 

CodeForces - 404B(類比題)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.