2012年7月22日

NPIO等价表达式AC代码

摘要: View Code 1 #include <iostream> 2 #include<cstdio> 3 #include<cstring> 4 using namespace std; 5 6 typedef struct 7 { 8 char op; 9 long long v; 10 bool ok; 11 }node1; 12 13 typedef struct 14 { 15 int cnt; 16 node1 I[1010]; 17 }node2; 18 19 node2 E[30],H[30]; 20 int w[... 阅读全文

posted @ 2012-07-22 10:45 AlanLau2011 阅读(196) 评论(0) 推荐(0) 编辑

导航