首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
UVA196
】的更多相关文章
UVA196
#include<stdio.h> #include<iostream> #include <strstream> using namespace std; #define MC 1010 #define MR 999 struct Node { int r; int c; int total; int hl; Node* aN; Node pop() { hl--; return aN[hl]; } void push(Node n) { aN[hl] = n; hl…