摘要: ###神奇的幻方 Link 模拟。 #include<iostream> using namespace std; int a[40][40]; int main() { register int n,s=1,x,y; cin>>n; while(s<=n*n) if(s==1) a[x=1][y= 阅读全文
posted @ 2019-11-14 20:03 Shiina_Mashiro 阅读(134) 评论(0) 推荐(0) 编辑
摘要: ###玩具谜题 Link 模拟。 #include<iostream> #include<vector> using namespace std; int n,m,p; vector<string> work; vector<bool> a; int main() { cin>>n>>m; for( 阅读全文
posted @ 2019-11-14 09:39 Shiina_Mashiro 阅读(124) 评论(0) 推荐(0) 编辑