24h購物| | PChome| 登入
2013-09-16 08:53:12| 人氣419| 回應0 | 上一篇 | 下一篇

[UVA][dp] 11432 - Busy Programmer

推薦 0 收藏 0 轉貼0 訂閱站台

Problem F
Busy Programmer
Input: Standard Input

Output: Standard Output

 

Our famous programmer Gordov Mia (Mr. Donkey) is having a very busy time in his office. His erratic boss has assigned him to two projects (project MICRO & project GOO) at the same time. Consequently, problems have occurred while making a feasible work schedule for him. The boss needs to submit a report to the CEO specifying the schedule of work for all the resources working under him for a period of 2D days. Gordov must work D days on each project. He doesn’t work more than a single project on a particular day. Gordov must finish the work of the project he started earlier (i.e. on the first day of the schedule) first. As the progress of both the projects depends on him, he can not be away from any project for more than G consecutive days. (of course unless a project is already complete.) For example, if D = 3 & G = 2, there can be ten valid schedules,

 

 

Day 1

Day 2

Day 3

Day 4

Day 5

Day 6

1

MICRO

MICRO

GOO

MICRO

GOO

GOO

2

GOO

GOO

MICRO

GOO

MICRO

MICRO

3

MICRO

MICRO

GOO

GOO

MICRO

GOO

4

GOO

GOO

MICRO

MICRO

GOO

MICRO

5

MICRO

GOO

MICRO

MICRO

GOO

GOO

6

GOO

MICRO

GOO

GOO

MICRO

MICRO

7

MICRO

GOO

MICRO

GOO

MICRO

GOO

8

GOO

MICRO

GOO

MICRO

GOO

MICRO

9

MICRO

GOO

GOO

MICRO

MICRO

GOO

10

GOO

MICRO

MICRO

GOO

GOO

MICRO

 

Now, Given D & G, you are to determine the number of possible schedules with the given constraints.

 
Input

There are around 2400 test cases in the input file. Every test case has two non-negative integers, D & G (D,G<=33) on a line by itself. A case with D = G = -1 terminates the input. This case must not be processed.

 

Output

For each test case, print a line in the format “Case x: y” where x is the case number & y is the number of possible schedules.

 

Sample Input                               Output for Sample Input                                    

3 2

3 1

-1 -1

Case 1: 10

Case 2: 2


Problemsetter: Mohammad Mahmudur Rahman

Special Thanks: Abdullah al Mahmud (Satej)

題目描述:

現在有兩個工作,各耗費 D 天完成,兩個工作可以交替執行,每天只值行一種,

因此會用 2*D 天完成兩個工作,但相同工作之間最多間隔 G 天。

如果其中一個工作完成後,另一個工作可以連續工作超過 G 天。

問有多少排列方式。

題目解法:

考慮 dp[i][j][k][2] 表示 i 天,此時其中一個工作已經工作 j 天、k 天,

並且上一個工作種類是什麼。

在轉移的時候,窮舉下一個工作天數 <= G,並且特別考慮其中一個工作已經完成的情況。


#include <stdio.h>
#include <algorithm>
using namespace std;

int main() {
    int D, G;
    int i, j, k;
    int cases = 0;
    while(scanf("%d %d", &D, &G) == 2 && D != -1) {
        long long dp[70][35][35][2] = {};
        for(i = 1; i <= G; i++)
            dp[i][i][0][0] = 1;
        for(i = 1; i <= 2*D; i++) {
            for(j = 0; j <= i; j++) {
                for(k = 1; k <= G; k++) {
                    if(j+k <= D && i-j <= D)
                        dp[i+k][j+k][i-j][0] += dp[i][j][i-j][1];
                    if(i-j+k <= D && j <= D)
                        dp[i+k][j][i-j+k][1] += dp[i][j][i-j][0];
                }
                if(j == D && D-(i-j) > G)
                    dp[2*D][D][D][1] += dp[i][j][i-j][0];
            }
        }
        printf("Case %d: %lld\n", ++cases, dp[2*D][D][D][1]*2);
    }
    return 0;
}

台長: Morris
人氣(419) | 回應(0)| 推薦 (0)| 收藏 (0)| 轉寄
全站分類: 教育學習(進修、留學、學術研究、教育概況) | 個人分類: UVA |
此分類下一篇:[UVA][三分二分] 11574 - Colliding Traffic
此分類上一篇:[UVA][排列組合] 11282 - Mixing Invitations

是 (若未登入"個人新聞台帳號"則看不到回覆唷!)
* 請輸入識別碼:
請輸入圖片中算式的結果(可能為0) 
(有*為必填)
TOP
詳全文