Shirlies
宁静专注认真的程序媛~
摘要: 数独,O(∩_∩)O哈哈~做了这道,以后什么数独就可以直接得出答案了……View Code 1 #include <iostream> 2 #include <cstring> 3 using namespace std; 4 5 int sudo[9][9]; 6 int flag; 7 8 void dfs(int a,int b); 9 int is_repeat(int i,int j,int k); 10 11 int main() 12 { 13 char a; 14 int cas=0; 15 while(cin>>a) 16 ... 阅读全文
posted @ 2012-03-02 19:22 Shirlies 阅读(454) 评论(0) 推荐(0) 编辑