杭電OJ題 1393 Weird Clock解題報告_ACM解題報告

來源:互聯網
上載者:User
Weird Clock Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 1771    Accepted Submission(s): 643


Problem Description A weird clock marked from 0 to 59 has only a minute hand. It won't move until a special coin is thrown into its box. There are different kinds of coins as your options. However once you make your choice, you cannot use any other kind. There are infinite number of coins of each kind, each marked with a number d ( 1 <= d <= 1000 ), meaning that this coin will make the minute hand move d times clockwise the current time. For example, if the current time is 45, and d = 2. Then the minute hand will move clockwise 90 minutes and will be pointing to 15.

Now you are given the initial time s ( 1 <= s <= 59 ) and the coin's type d. Write a program to find the minimum number of d-coins needed to turn the minute hand back to 0.
 
Input There are several tests. Each test occupies a line containing two positive integers s and d.

The input is finished by a line containing 0 0.
 
Output For each test print in a single line the minimum number of coins needed. If it is impossible to turn the hand back to 0, output "Impossible".
 
Sample Input
 30 1 0 0   

Sample Output
 1   

————————————————————————————————————————————————————————
考慮無法達到題目要求,即輸出“Impossible” 的條件是當出現重複出先以前出現過的時間的時候即為無法達到要求,我設定了一個長度為60的數組記錄是否當前的時間是否已經出現過。

/**************************** *Name:Weird Clock.c *Tags:ACM water *Note:當第二次出現相同結果時表示不可能實現題目要求,輸出Impossible ****************************/#include <stdio.h>int main(){      int s, d, t, save[60], i;      while(scanf("%d%d", &s, &d) != EOF && (s || d)) {    for(i = 0; i < 60; i++) {  save[i] = 0;    }    if(d == 0 && s) {  printf("Impossible\n");  continue;    }    t = 0;    while(s != 0 && !save[s]) {  save[s] = 1;  s = (s * (d + 1)) % 60;  t++;    }    if(s == 0) {  printf("%d\n", t);    } else {  printf("Impossible\n");    }      }      return 0;}


聯繫我們

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