2021团体程序设计天梯赛 L2-4 哲哲打游戏

2021/4/27 12:26:45

本文主要是介绍2021团体程序设计天梯赛 L2-4 哲哲打游戏,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

思路:

水题,略过

Tip:

#include <bits/stdc++.h>

using namespace std;

const int maxn = 100000 + 5;
vector<int> v[maxn];
int cun[maxn];

int main() {
    int n, m;
    cin >> n >> m;
    for (int i = 1; i <= n; i++) {
        int t;
        cin >> t;
        for (int j = 1; j <= t; j++) {
            int p;
            cin >> p;
            v[i].push_back(p);
        }
    }
    int now = 1;
    while (m--) {
        int nop, j;
        cin >> nop >> j;
        if (nop == 0)
            now = v[now][j - 1];
        else if (nop == 1) {
            cun[j] = now;
            cout << now << endl;
        } else if (nop == 2)
            now = cun[j];
    }
    cout << now << endl;
    return 0;
}

  



这篇关于2021团体程序设计天梯赛 L2-4 哲哲打游戏的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程