摘要: 暴力递归: 1 #include <bits/stdc++.h> 2 3 using namespace std; 4 5 class Solution { 6 public: 7 //定义:index之后的位置选择还没做,前面的已经做了,light存放已经放过灯的位置; 8 //返回能够照亮所有位 阅读全文
posted @ 2022-05-06 16:40 coyote25 阅读(20) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h>using namespace std;class Solution{public: string winner1(int n ){ if(0<=n && n<= 4) return (n==0 ||n==2 )?"hou":"xian"; int b 阅读全文
posted @ 2022-05-06 11:29 coyote25 阅读(28) 评论(0) 推荐(0) 编辑