摘要: #include<bits/stdc++.h> using namespace std; int a[105]= {0}; int b[105]; int pd(int q,int l) { int i; for(i=0; i<l; i++) { if(b[i]==q) { return 0; } 阅读全文
posted @ 2020-07-13 22:58 Drophair 阅读(116) 评论(0) 推荐(0)
摘要: 地址:https://www.luogu.com.cn/problem/P2670 #include<iostream>int a[105][105]={0}; using namespace std; int main() { int n,m; cin>>n>>m; int i,j; char b 阅读全文
posted @ 2020-07-13 13:06 Drophair 阅读(172) 评论(0) 推荐(0)