【hdoj 1005】有限状态机

题目:传送门

解答:f(1) = 1, f(2) = 1, f(n) = (A * f(n - 1) + B * f(n - 2)) mod 7

乍看之下像是递归。但是数据范围太大了,一定会超时。可以想到找规律。

如果将 f(n) 视为一个状态,那么决定它的是谁?是前两个状态。而且因为 mod 7,所以这个函数的定义域、值域都是{0,1,2,3,4,5,6}。

这样,我们可以构造一个 7*7的有限状态机(二维数组),每个状态填写出现的次数。当我们即将填写一个状态时发现里面已经出现了次数,当前次数 - 已有次数就是循环的规模。最多计算49次,我们一定会发现循环规律。

这里需要注意的是:

  1. 需要将输入的 n 减去刚刚发现规律时的状态机次数(正式开始循环),再对循环规模取模;
  2. 取模 = 0时,应该加上循环规模。例如:1 1 4 2 4 2,如果直接按照取模计算,则 f(4) = 1 而不是 2;
  3. 无需判断 n 是否小于循环规模,因为有限状态机一定停机。即使小于对循环规模取模仍得到自己
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<string>
#include<iostream>
#include<vector>
#include<map>
using namespace std;

int main()
{
    int a, b, i, j;
    long n;
    int map[7][7];
    while (cin>>a>>b>>n && a && b && n)
    {
        if(n == 1 || n == 2)
        {
            cout<<"1"<<endl;
            continue;
        }

        memset(map, 0, sizeof(map));
        int val = 1;
        map[1][1] = val;
        i = 1;
        j = (a*1 + b*1) % 7;
        int k = 0;
        while(!map[i][j])
        {
            val++;
            map[i][j] = val;
            int tmp = j;
            j = (a*j + b*i) % 7;
            i = tmp;

            // 多余操作,状态机一定会停机
            //num--;
            //if (num == 0)
            //{
            //    cout<<j<<endl;
            //    break;
            //}
        }

        int circle = (val + 1) - map[i][j];
        int start = map[i][j];

        n = (n - (start - 1)) % circle;;
        if(n == 0) n = circle;
        n = n + (start - 1);

        int ans;
        for (int k = 0; k < 7; k++)
        {
            for (int l = 0; l < 7; l++)
            {
                if (n == map[k][l])
                {
                    ans = k;
                }
            }
        }

        cout<<ans<<endl;
        continue;
    }

    return 0;
}
时间: 2024-10-14 04:39:28

【hdoj 1005】有限状态机的相关文章

【HDOJ 1005】 CRB and His Birthday

[HDOJ 1005] CRB and His Birthday 背包 商场卖东西 没件物品有对应的价值 同时由于超市老板跟你是好绩优...每买一件物品给你a个糖果 同时如果购买某物品 会给对应的b种糖果 即买x个i 可以得到ai*x+bi个糖果 问怎么能得到最多糖果 开始是想开个bool标记每个状态某糖果买每买 还有在该状态是否第一次买某种糖果 写着写着写不好了-- 后来突然想到 可以把每件物品拆开 由于每种物品只赠送一次b 可以把赠b的物品作为"特卖品" 其余为正常送a的物品 这样

HDOJ 1005

Number Sequence Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 63888    Accepted Submission(s): 14701Problem Description A number sequence is defined as follows: f(1) = 1, f(2) = 1, f(n) = (A *

【HDOJ】4328 Cut the cake

将原问题转化为求完全由1组成的最大子矩阵.挺经典的通过dp将n^3转化为n^2. 1 /* 4328 */ 2 #include <iostream> 3 #include <sstream> 4 #include <string> 5 #include <map> 6 #include <queue> 7 #include <set> 8 #include <stack> 9 #include <vector>

HDOJ 3790 双权值Dijkstra

1 #include <iostream> 2 #include <stdio.h> 3 #include <string.h> 4 #include <cstring> 5 using namespace std; 6 7 const int INF = 1000000; 8 const int MAXSIZE = 1005; 9 10 int map[MAXSIZE][MAXSIZE]; 11 int price[MAXSIZE][MAXSIZE]; 1

HDOJ 1217 Floyed Template

1 #include <iostream> 2 #include <stdio.h> 3 #include <string.h> 4 #include <cstring> 5 #include<map> 6 using namespace std; 7 8 map<string,int>name; 9 const int INF = 1000000; 10 const int MAXSIZE = 1005; 11 const int

hdoj 2391 Filthy Rich 【DP】

题目大意:有个二维数组,你从(0,0)出发,最终到(n,m), 在这个二维数组中,每个位置dp[i][j]都有一定量的黄金,你可以拾取,问你最多能失去多少,并且,你的方向有下,右, 斜向下三个方向: 策略:就是每一个都加上它的上方向与左方向的最大值,这样到最后就是最大值.详情见代码 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2391 代码: #include<stdio.h> #include<string.h> int dp[1

【HDOJ】2428 Stars

先排序后二分. 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <algorithm> 5 using namespace std; 6 7 #define MAXN 1005 8 9 typedef struct { 10 int x, y; 11 } node_st; 12 13 node_st nodes[MAXN]; 14 int n; 15 16 b

【HDOJ】1175 连连看

BFS.wa了一下午,原来是YES,写成了Yes. 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <queue> 5 using namespace std; 6 7 typedef struct node_st{ 8 int x, y; 9 int dir; 10 int turn; 11 node_st() {} 12 node_st(int xx, i

hdoj 1598 find the most comfortable road 【并查集】+【暴力枚举】

find the most comfortable road Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 4022    Accepted Submission(s): 1732 Problem Description XX星有许多城市,城市之间通过一种奇怪的高速公路SARS(Super Air Roam Structure---超