Skip to content

Instantly share code, notes, and snippets.

@aahung
Last active October 3, 2015 10:59
Show Gist options
  • Save aahung/87ab333405e50f2c23d1 to your computer and use it in GitHub Desktop.
Save aahung/87ab333405e50f2c23d1 to your computer and use it in GitHub Desktop.
ICPC 4966
#include <iostream>
#include <vector>
#include <string>
using namespace std;
typedef struct node_t {
vector<int> values;
vector<node_t *> e_values;
int evaluate;
} node_t;
int main() {
string s;
while (cin >> s) {
vector<vector<node_t> > tree;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment