codeforces 492D Vanya and Computer Game(額。。。數學題?水題吧)

來源:互聯網
上載者:User

標籤:style   http   io   ar   os   sp   for   on   問題   

傳送門:點擊開啟連結


題目大意:

有2個人在打怪,攻擊頻率分別是x,y。小怪有num點血。問死的時候是誰打死的。如果同時出手 輸出Both。


解題思路:

在一秒內考慮這個問題(一秒是迴圈節)。

假設攻擊時刻的分母x*y。那麼容易得到每個人的攻擊時刻(在一秒內)。

然後如果有一個時刻有重複。那麼肯定是2個人同時在打。

排個序就好了。


這是D題麼。。。我覺得最多是C題難度,吐槽一下。。。


#include <cstdio>#include <vector>#include <iostream>#include <algorithm>#include <cstring>using namespace std;struct Node{    long long num;    int team;    bool operator < (const Node& b)const{        return num < b.num;    }}a[2020202];int cnt;void init(long long x,long long y){    cnt = 0;    for(int i = 1;i <= x;i++){        a[cnt++] = (Node){(long long)(y*i),1};    }    for(int i = 1;i <= y;i++){        a[cnt++] = (Node){(long long)(x*i),2};    }}int main(){    int n;    long long x,y;    cin >> n >> x >>y;    init(x,y);    sort(a,a+cnt);    for(int i = 1;i <= n;i++){        long long times;        scanf("%I64d",×);        times--;        times = times%(x+y);        if(times+1 < cnt && a[times].num == a[times+1].num){            printf("Both\n");            continue;        }        if(times != 0 && a[times].num == a[times-1].num){            printf("Both\n");            continue;        }        if(a[times].team == 1){            printf("Vanya\n");        }        else{            printf("Vova\n");        }    }    return 0;}


codeforces 492D Vanya and Computer Game(額。。。數學題?水題吧)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.