sgu150: Mr. Beetle II

枚舉。

#include <cstdio>
#define abs(x) ((x) < 0 ? -(x) : (x))
inline int read()
{
    int x = 0, f = 1, t = getchar();
    while(t < '0' || t > '9') t == '-' ? f = -1 : 0, t = getchar();
    while(t >= '0' && t <= '9') x = (x<<1) + (x<<3) + t - '0', t = getchar();
    return x * f;
}
void work()
{
    int x1 = read(), y1 = read(), x2 = read(), y2 = read(), n = read();

    if(x1 == x2 || y1 == y2) { puts("no solution"); return ; }

    int tx = x2-x1, ty = y2-y1, sum = 0;
    bool dx = tx < 0, dy = ty < 0;
    tx = abs(tx), ty = abs(ty);

    for(int x = 0; x < tx; ++x)
    {
        long long k1 = (long long)ty * x, k2 = (long long)ty * (x+1);
        sum += k2/tx - k1/tx + (k2 % tx > 0);
        if(sum >= n)
        {
            int xx = x, yy = k2 / tx - (sum - n) - (k2 % tx == 0);
            if(dx) xx = -xx-1;
            if(dy) yy = -yy-1;
            printf("%d %d\n", xx+x1, yy+y1);
            return ;
        }
    }
    puts("no solution");
}
int main()
{
    #ifndef ONLINE_JUDGE
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
    #endif

    work();

    #ifndef ONLINE_JUDGE
    fclose(stdin);
    fclose(stdout);
    #endif
    return 0;
}
發佈了44 篇原創文章 · 獲贊 0 · 訪問量 1萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章