#44912: c++ 詳解


yp11351229@yphs.tp.edu.tw (709-39詹豫喬)

學校 : 臺北市私立延平高級中學
編號 : 276259
來源 : [203.72.178.2]
最後登入時間 :
2025-04-01 17:21:28
d105. NOIP 2008 3.传球游戏 -- NOIP2008普及组复赛 | From: [203.72.178.2] | 發表日期 : 2024-12-24 17:30

#include <iostream>
#include <vector>
#include <map>
using namespace std;

int N, M;

void BFS(vector<int>start, int count, map<int, int>MAP)
{
    vector<int>newStart;
    map<int, int>exist;
    for (int i = 0; i<start.size(); i++)
    {
        int left = start[i] - 1, right = start[i] + 1;
        if (left < 1) left = N;
        if (right > N) right = 1;
        if (exist[left] == 0) newStart.push_back(left);
        if (exist[right] == 0) newStart.push_back(right);
        exist[left] += MAP[start[i]];
        exist[right] += MAP[start[i]];
    }
    if (count == M-1)
    {
        cout << exist[1] << "\n";
        return;
    }
    BFS(newStart, count+1, exist);
}

int main() {
    cin.sync_with_stdio(0);
    cin.tie(0);
    cout.sync_with_stdio(0);
    cout.tie(0);
    cin >> N >> M;
    if (M == 1) cout << "0\n";
    else
    {
        vector<int>start;
        start.push_back(1);
        map<int, int>MAP;
        MAP[1] = 1;
        BFS(start, 0, MAP);
    }
}
 
ZeroJudge Forum