xyx023

xyx023 2025-10-25 14:36:18 5

#include using namespace std; bool tree[10001]; int l,m;//马路的长度l和区域的数目m。 int u,v;//分别表示一个区域的起始点和终止点的坐标。 int sum; int main(){ cin>>l>>m; //把1~l这个区间内“种上”树。 for(int i=1;i<=l;i++){ tree[i]=1; } cout<<sum+1; return 0; }

{{ vote && vote.total.up }}