We are stacking blocks to form a pyramid. Each block has a color which is a one letter string, like `'Z'`.

For every block of color `C` we place not in the bottom row, we are placing it on top of a left block of color `A` and right block of color `B`. We are allowed to place the block there only if `(A, B, C)` is an allowed triple.

We start with a bottom row of bottom, represented as a single string. We also start with a list of allowed triples allowed. Each allowed triple is represented as a string of length 3.

Return true if we can build the pyramid all the way to the top, otherwise false.

Example 1:

Input: bottom = "XYZ", allowed = ["XYD", "YZE", "DEA", "FFF"]
Output: true
Explanation:
We can stack the pyramid like this:
A
/ \
D E
/ \ / \
X Y Z This works because ('X', 'Y', 'D'), ('Y', 'Z', 'E'), and ('D', 'E', 'A') are allowed triples.

Example 2:

Input: bottom = "XXYX", allowed = ["XXX", "XXY", "XYX", "XYY", "YXZ"]
Output: false
Explanation:
We can't stack the pyramid to the top.
Note that there could be allowed triples (A, B, C) and (A, B, D) with C != D.

Note:

  1. bottom will be a string with length in range [2, 8].
  2. allowed will have length in range [0, 200].
  3. Letters in all strings will be chosen from the set {'A', 'B', 'C', 'D', 'E', 'F', 'G'}.

map + backtracing

Runtime: 9 ms, faster than 80.22% of Java online submissions for Pyramid Transition Matrix.

class Solution {
private Map<String, List<Character>> mp = new HashMap<>();
public boolean pyramidTransition(String bottom, List<String> allowed) {
for(int i=; i<allowed.size(); i++){
String tmp = allowed.get(i).substring(,);
if(mp.containsKey(tmp)){
mp.get(tmp).add(allowed.get(i).charAt(allowed.get(i).length()-));
}else{
mp.put(tmp, new ArrayList<>());
mp.get(tmp).add(allowed.get(i).charAt(allowed.get(i).length()-));
}
}
// for(String s : mp.keySet()){
// System.out.print(s + " " + mp.get(s) + "\n");
// }
return helper(bottom, "", );
}
public boolean helper(String bottom, String up, int index){
if(bottom.length() == ){
return true;
}else {
String tmp = bottom.substring(index, index+);
if(!mp.containsKey(tmp)) return false;
List<Character> clist = mp.get(tmp);
if(index+ == bottom.length()){
for(char x : clist){
String finalup = up + String.valueOf(x);
if(helper(finalup, "", )) return true;
}
}else {
for(char x : clist){
if(helper(bottom, up+String.valueOf(x), index+)) return true;
}
}
}
return false;
}
}

最新文章

  1. Mac环境下Octopress个人博客搭建
  2. 贪吃蛇的java代码分析(二)
  3. UE4.11新特性:胶囊体阴影
  4. 【Alpha版本】冲刺-Day6
  5. gitlab安装部署
  6. 在线聊天室的实现(1)--websocket协议和javascript版的api
  7. Android 界面排版的5种方式
  8. mysql引擎区别
  9. hdu 3333 Turing Tree 图灵树(线段树 + 二分离散)
  10. DataGridView添加复选框并向其中绑定值
  11. tabBar隐藏与显现 hidesBottomBarWhenPushed
  12. Nginx日志增长过快详细分析
  13. HDU-1166-敌兵布阵(线段树)
  14. 转接口IC NCS8807:LVDS转MINI LVDS芯片
  15. Linux 库文件详解
  16. 利用Java泛型实现简单的泛型方法
  17. Android实现横屏以及全屏的小技巧
  18. java对象之----(PO,VO,DAO,BO,POJO)
  19. 4.8Python数据处理篇之Matplotlib系列(八)---Figure的学习
  20. python套接字编程基础

热门文章

  1. 6.B+Tree 检索原理
  2. Django 开发相关知识 整理
  3. 【Java并发】线程安全和内存模型
  4. selenium检测webdriver封爬虫的解决方法
  5. JDBC下
  6. CF15E Triangles
  7. hdu4612 Warm up[边双连通分量缩点+树的直径]
  8. ubuntu 16.04中文输入法安装
  9. indexedDB 前端数据库(使用的简单案例)
  10. Appium Python测试环境搭建