周赛292(修改)
This commit is contained in:
parent
6786966375
commit
1e47d983bf
@ -16,6 +16,12 @@ public class Solution292 {
|
|||||||
solution.countTexts("22233");
|
solution.countTexts("22233");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第一题
|
||||||
|
*
|
||||||
|
* @param num
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
public String largestGoodInteger(String num) {
|
public String largestGoodInteger(String num) {
|
||||||
String str = "";
|
String str = "";
|
||||||
for (int i = 9; i >= 0; i--) {
|
for (int i = 9; i >= 0; i--) {
|
||||||
@ -27,6 +33,12 @@ public class Solution292 {
|
|||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第二题
|
||||||
|
*
|
||||||
|
* @param root
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
public int averageOfSubtree(TreeNode root) {
|
public int averageOfSubtree(TreeNode root) {
|
||||||
counts(root);
|
counts(root);
|
||||||
sums(root);
|
sums(root);
|
||||||
@ -58,6 +70,12 @@ public class Solution292 {
|
|||||||
return sum;
|
return sum;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第三题
|
||||||
|
*
|
||||||
|
* @param pressedKeys
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
public int countTexts(String pressedKeys) {
|
public int countTexts(String pressedKeys) {
|
||||||
int[] cnts = new int[pressedKeys.length() + 1];
|
int[] cnts = new int[pressedKeys.length() + 1];
|
||||||
cnts[0] = 1;
|
cnts[0] = 1;
|
||||||
@ -82,36 +100,80 @@ public class Solution292 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第四题
|
||||||
|
*
|
||||||
|
* @param grid
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
//public boolean hasValidPath(char[][] grid) {
|
||||||
|
// xl = grid.length;
|
||||||
|
// yl = grid[0].length;
|
||||||
|
// return dfs(grid, 0, 0, 0);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//Set<String> set = new HashSet<>();
|
||||||
|
//int xl;
|
||||||
|
//int yl;
|
||||||
|
//
|
||||||
|
//private boolean dfs(char[][] grid, int x, int y, int cnt) {
|
||||||
|
// String s = "" + x + "-" + y + "-" + cnt;
|
||||||
|
// if (set.contains(s)) {
|
||||||
|
// return false;
|
||||||
|
// }
|
||||||
|
// set.add(s);
|
||||||
|
// if (x >= xl || y >= yl) {
|
||||||
|
// return false;
|
||||||
|
// }
|
||||||
|
// if (grid[x][y] == '(') {
|
||||||
|
// cnt++;
|
||||||
|
// } else {
|
||||||
|
// cnt--;
|
||||||
|
// }
|
||||||
|
// if (cnt < 0 || xl + yl - x - y < cnt) {
|
||||||
|
// return false;
|
||||||
|
// }
|
||||||
|
// if (x == xl - 1 && y == yl - 1 && cnt == 0) {
|
||||||
|
// return true;
|
||||||
|
// }
|
||||||
|
// return dfs(grid, x + 1, y, cnt) || dfs(grid, x, y + 1, cnt);
|
||||||
|
//}
|
||||||
public boolean hasValidPath(char[][] grid) {
|
public boolean hasValidPath(char[][] grid) {
|
||||||
xl = grid.length;
|
xl = grid.length;
|
||||||
yl = grid[0].length;
|
yl = grid[0].length;
|
||||||
return dfs(grid, 0, 0, 0);
|
use = new boolean[xl][yl][xl * yl];
|
||||||
|
if ((xl + yl) % 2 == 0 || grid[0][0] == ')' || grid[xl - 1][yl - 1] == '(') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
dfs(grid, 0, 0, 0);
|
||||||
|
return bl;
|
||||||
}
|
}
|
||||||
|
|
||||||
Set<String> set = new HashSet<>();
|
|
||||||
int xl;
|
int xl;
|
||||||
int yl;
|
int yl;
|
||||||
|
boolean bl = false;
|
||||||
|
boolean[][][] use;
|
||||||
|
|
||||||
private boolean dfs(char[][] grid, int x, int y, int cnt) {
|
private void dfs(char[][] grid, int x, int y, int cnt) {
|
||||||
String s = "" + x + "-" + y + "-" + cnt;
|
if (x >= xl || y >= yl || cnt > xl - x + yl - y - 1) {
|
||||||
if (set.contains(s)) {
|
return;
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
set.add(s);
|
if (x == xl - 1 && y == yl - 1) {
|
||||||
if (x >= xl || y >= yl) {
|
bl = cnt == 1;
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
if (grid[x][y] == '(') {
|
if (use[x][y][cnt]) {
|
||||||
cnt++;
|
return;
|
||||||
} else {
|
|
||||||
cnt--;
|
|
||||||
}
|
}
|
||||||
if (cnt < 0 || xl + yl - x - y < cnt) {
|
use[x][y][cnt] = true;
|
||||||
return false;
|
cnt += grid[x][y] == '(' ? 1 : -1;
|
||||||
|
if (cnt < 0) {
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
if (x == xl - 1 && y == yl - 1 && cnt == 0) {
|
if (!bl) {
|
||||||
return true;
|
dfs(grid, x + 1, y, cnt);
|
||||||
|
}
|
||||||
|
if (!bl) {
|
||||||
|
dfs(grid, x, y + 1, cnt);
|
||||||
}
|
}
|
||||||
return dfs(grid, x + 1, y, cnt) || dfs(grid, x, y + 1, cnt);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user