摘要: code #include<iostream> #include<algorithm> using namespace std; int L,M;//L->lenth,M->num of area int a[10005]; int main(){ scanf("%d%d",&L,&M); int 阅读全文
posted @ 2022-01-24 23:46 ggexs 阅读(66) 评论(0) 推荐(0)
摘要: trouble 删除输入法后切换仍存在已删除输入法,尝试过删除注册表后更新仍出现,现在解决方案尝试: win10输入法软件接管 阅读全文
posted @ 2022-01-24 23:26 ggexs 阅读(63) 评论(0) 推荐(0)
摘要: code #include<iostream> #include<algorithm> using namespace std; int a[10005]; int main(){ int m,n; cin>>n>>m;//n->et's finger num,m->the num need to 阅读全文
posted @ 2022-01-24 18:20 ggexs 阅读(76) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstdio> #include<cstring> using namespace std; int n; string s; void dfs(int l,int r){ int mid = (l+r)/2; if(r!=l){ dfs(l, 阅读全文
posted @ 2022-01-24 14:06 ggexs 阅读(79) 评论(1) 推荐(1)