zoukankan      html  css  js  c++  java
  • temp

    #define _CRT_SECURE_NO_WARNINGS
    #include <iostream>
    #include <map>
    #include<vector>
    #include<algorithm>
    #include <iostream>
    #include <vector>
    #include <cmath>
    #include <string.h>
    #include <stack>
    using namespace std;
    int main() {
        int m, n, k;
        cin >> m >> n >> k;
        for (int j = 0; j < k; j++) {
            stack<int> s;
            vector<int> v(n+1);
            for (int i = 1; i <= n; i++) {
                scanf("%d", v[i]);
            }
            int current = 1;
            for (int i = 1; i <= n; i++) {
                s.push(i);
                if(!s.empty()&&s.top())
            }
        }
    }
  • 相关阅读:
    USB
    Google
    机型参数
    mac
    反编译
    xcode
    Ios 消息推送
    真机:特殊
    Android
    object-c
  • 原文地址:https://www.cnblogs.com/masayoshi/p/10972392.html
Copyright © 2011-2022 走看看