Im_hear

导航

2012年4月24日

zoj 1009

摘要: 一道模拟题,这次是密文转成明文。据说就是反函数。下标这东西,注意啊注意。 不用百分号的时候,速度真快吖。 s = k + c[k] ;if(s < 0)s += m; if(s >= m)s -= m; s = s + b[s] ;if(s < 0)s += m; if(s >= m)s -= m; s = s + a[s] ;if(s < 0)s += m; if(s >= m)s -= m;source code 阅读全文

posted @ 2012-04-24 14:40 Im_hear 阅读(143) 评论(0) 推荐(0) 编辑

zoj 1009

摘要: View Code 1 #include <cstdio> 2 #include <iostream> 3 #include <algorithm> 4 using namespace std; 5 #include <string> 6 #include <deque> 7 8 const int N = 30; 9 int n,m;10 string rotor[4];11 string tmp;12 deque<int> level[4];13 deque<int> a,b,c;14 15 void co 阅读全文

posted @ 2012-04-24 14:29 Im_hear 阅读(140) 评论(0) 推荐(0) 编辑