题解列表

筛选

DNA-题解(C语言代码)

摘要:思路就是每行前的空格数变化 #include using namespace std; int main(){ int n; cin>>n; int a[2*n];//每组的a,b都……