锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲自拍偷拍网址,久久综合久久88,一区二区三区四区蜜桃http://m.shnenglu.com/Uriel/category/11829.htmlResearch Associate @ Harvard University / Research Interests: Computer Vision, Biomedical Image Analysis, Machine Learningzh-cnThu, 25 Jan 2024 15:42:23 GMTThu, 25 Jan 2024 15:42:23 GMT60[LeetCode]1457. Pseudo-Palindromic Paths in a Binary Tree (Medium) Python-2024.01.24http://m.shnenglu.com/Uriel/articles/230262.htmlUrielUrielWed, 24 Jan 2024 11:26:00 GMThttp://m.shnenglu.com/Uriel/articles/230262.htmlhttp://m.shnenglu.com/Uriel/comments/230262.htmlhttp://m.shnenglu.com/Uriel/articles/230262.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/230262.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/230262.html
 1 #1457
 2 #Runtime: 911 ms (Beats 96.43%)
 3 #Memory: 136.7 MB (Beats 10.71%)
 4 
 5 # Definition for a binary tree node.
 6 # class TreeNode(object):
 7 #     def __init__(self, val=0, left=None, right=None):
 8 #         self.val = val
 9 #         self.left = left
10 #         self.right = right
11 class Solution(object):
12     def pseudoPalindromicPaths (self, root, cnt = 0):
13         """
14         :type root: TreeNode
15         :rtype: int
16         """
17         if not root:
18             return 0
19         cnt ^= 1 << (root.val - 1)
20         if root.left is None and root.right is None:
21             return 1 if cnt & (cnt - 1) == 0 else 0
22         return self.pseudoPalindromicPaths(root.left, cnt) + self.pseudoPalindromicPaths(root.right, cnt)
23         


Uriel 2024-01-24 19:26 鍙戣〃璇勮
]]>
[LeetCode]808. Soup Servings (Medium) Python3-2023.07.29http://m.shnenglu.com/Uriel/articles/229996.htmlUrielUrielSat, 29 Jul 2023 10:07:00 GMThttp://m.shnenglu.com/Uriel/articles/229996.htmlhttp://m.shnenglu.com/Uriel/comments/229996.htmlhttp://m.shnenglu.com/Uriel/articles/229996.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/229996.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/229996.html

 1 #808
 2 #Runtime: 36 ms (Beats 100%)
 3 #Memory: 17 MB (Beats 79.25%)
 4 
 5 class Solution:
 6     def soupServings(self, n: int) -> float:
 7         if n >= 4276: 
 8             return 1.0
 9         @lru_cache(None)
10         def dp(x, y):
11             if x <= 0 and y > 0:
12                 return 1
13             if x <= 0 and y <= 0:
14                 return 0.5
15             if x > 0 and y <= 0:
16                 return 0
17             return (dp(x - 100, y) + dp(x - 75, y - 25) + dp(x - 50, y - 50) + dp(x - 25, y - 75)) * 0.25
18         
19         return dp(1.0 * n, 1.0 * n)


Uriel 2023-07-29 18:07 鍙戣〃璇勮
]]>
[LeetCode]486. Predict the Winner (Medium) Python3-2023.07.28http://m.shnenglu.com/Uriel/articles/229995.htmlUrielUrielFri, 28 Jul 2023 09:37:00 GMThttp://m.shnenglu.com/Uriel/articles/229995.htmlhttp://m.shnenglu.com/Uriel/comments/229995.htmlhttp://m.shnenglu.com/Uriel/articles/229995.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/229995.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/229995.html

 1 #486
 2 #Runtime: 41 ms (Beats 96.36%)
 3 #Memory: 16.7 MB (Beats 19.78%)
 4 
 5 class Solution:
 6     def PredictTheWinner(self, nums: List[int]) -> bool:
 7         n = len(nums)
 8         @lru_cache(None)
 9         def dp(i, j):
10             return 0 if i > j else max(-dp(i + 1, j) + nums[i], -dp(i, j - 1) + nums[j])
11 
12         return dp(0, n -1) >= 0


Uriel 2023-07-28 17:37 鍙戣〃璇勮
]]>
[LeetCode]956. Tallest Billboard (Hard) Python-2023.06.24http://m.shnenglu.com/Uriel/articles/229943.htmlUrielUrielSun, 25 Jun 2023 14:34:00 GMThttp://m.shnenglu.com/Uriel/articles/229943.htmlhttp://m.shnenglu.com/Uriel/comments/229943.htmlhttp://m.shnenglu.com/Uriel/articles/229943.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/229943.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/229943.html閫掑綊DP+memorization錛屽弬鑰冧簡Discussion -> https://leetcode.com/problems/tallest-billboard/solutions/3675264/python3-solution/


 1 #956
 2 #Runtime: 960 ms (Beats 33.33%)
 3 #Memory: 121.3 MB (Beats 11.11%)
 4 
 5 class Solution(object):
 6     def tallestBillboard(self, rods):
 7         """
 8         :type rods: List[int]
 9         :rtype: int
10         """
11         ans = {}
12         def DFS(i, dif):
13             if (i, dif) in ans:
14                 return ans[(i, dif)]
15             if i >= len(rods):
16                 if dif:
17                     return float('-inf')
18                 return 0
19             l = DFS(i + 1, dif + rods[i])
20             skip = DFS(i + 1, dif)
21             s = DFS(i + 1, abs(rods[i] - dif)) + min(dif, rods[i])
22             ans[(i, dif)] = max(l, s, skip)
23             return ans[(i, dif)]
24 
25 
26         return DFS(0, 0)


Uriel 2023-06-25 22:34 鍙戣〃璇勮
]]>
[LeetCode]1575. Count All Possible Routes (Hard) Python3-2023.06.25http://m.shnenglu.com/Uriel/articles/229942.htmlUrielUrielSun, 25 Jun 2023 14:30:00 GMThttp://m.shnenglu.com/Uriel/articles/229942.htmlhttp://m.shnenglu.com/Uriel/comments/229942.htmlhttp://m.shnenglu.com/Uriel/articles/229942.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/229942.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/229942.html
緇欏嚭姣忎釜鍩庡競i鐨刲ocations[i]錛屼互鍙婅搗濮嬨佺粓鐐瑰煄甯傚拰鍒濆姹芥補閲忥紝浠庡煄甯俰鍒癹闇瑕佽楄垂姹芥補锝渓ocations[i]-locations[j]锝滐紝闂竴鍏辨湁澶氬皯鏉¤礬綰?/div>
閫掑綊DP+memorization錛堢敤python3鐨刲ru_cache錛?br />鍙傝冧簡Discussion -> https://leetcode.com/problems/count-all-possible-routes/solutions/3678855/python3-solution/


 1 #1575
 2 #Runtime: 2024 ms (Beats 68.42%)
 3 #Memory: 41.4 MB (Beats 12.3%)
 4 
 5 class Solution:
 6     def countRoutes(self, locations: List[int], start: int, finish: int, fuel: int) -> int:
 7         MOD = 10 ** 9 + 7
 8 
 9         @lru_cache(None)
10         def DP(p, x):
11             if x < 0:
12                 return 0
13             t = 0
14             if p == finish:
15                 t += 1
16             for i in range(len(locations)):
17                 if i != p:
18                     t += DP(i, x - abs(locations[i] - locations[p]))
19             return t
20         
21         return DP(start, fuel) % MOD


Uriel 2023-06-25 22:30 鍙戣〃璇勮
]]>
[LeetCode]2328. Number of Increasing Paths in a Grid (Hard) Python3-2023.06.18http://m.shnenglu.com/Uriel/articles/229934.htmlUrielUrielSun, 18 Jun 2023 13:10:00 GMThttp://m.shnenglu.com/Uriel/articles/229934.htmlhttp://m.shnenglu.com/Uriel/comments/229934.htmlhttp://m.shnenglu.com/Uriel/articles/229934.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/229934.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/229934.html鍙傝冧簡Discussion-> https://leetcode.com/problems/number-of-increasing-paths-in-a-grid/solutions/3650130/python3-solution/


 1 #2328
 2 #Runtime: 2652 ms (Beats 28.65%)
 3 #Memory: 78.9 MB (Beats 49.52%)
 4 
 5 class Solution:
 6     def countPaths(self, grid: List[List[int]]) -> int:
 7         MOD = 10 ** 9 + 7
 8         n, m = len(grid), len(grid[0])
 9         dp = [[-1 for _ in range(m)] for _ in range(n)]
10 
11         def cal(r, c, pre):
12             nonlocal n, m
13             if r < 0 or c < 0 or r >= n or c >= m or grid[r][c] <= pre:
14                 return 0
15             if dp[r][c] != -1:
16                 return dp[r][c]
17             dir = [[1, 0], [-1, 0], [0, -1], [0, 1]]
18             t = 1
19             for d in dir:
20                 tr = r + d[0]
21                 tc = c + d[1]
22                 t += cal(tr, tc, grid[r][c])
23             dp[r][c] = t
24             return t
25         
26         ans = 0
27         for r in range(n):
28             for c in range(m):
29                 ans = (ans + cal(r, c, -1)) % MOD
30         return ans


Uriel 2023-06-18 21:10 鍙戣〃璇勮
]]>
[LeetCode]1569. Number of Ways to Reorder Array to Get Same BST (Hard) Python3-2023.06.16http://m.shnenglu.com/Uriel/articles/229931.htmlUrielUrielFri, 16 Jun 2023 09:23:00 GMThttp://m.shnenglu.com/Uriel/articles/229931.htmlhttp://m.shnenglu.com/Uriel/comments/229931.htmlhttp://m.shnenglu.com/Uriel/articles/229931.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/229931.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/229931.html鍋囪褰撳墠鏁板垪闀縧錛岄偅涔堢涓涓暟瀛楀喅瀹氫簡root鐨勪綅緗紝鏃犳硶縐誨姩錛屼箣鍚庣殑鏁板瓧姣攔oot澶х殑鏁板拰姣攔oot灝忕殑鏁扮殑鏁伴噺鏄竴瀹氱殑錛屽亣璁炬湁m涓暟姣攔oot澶э紝n涓暟姣攔oot灝忥紙m+n+1=l錛夈傞偅涔堟墦涔遍『搴忚繕鍙互鏋勬垚涓鏍風殑BST鐨勬暟閲忓氨鏄粍鍚堟暟C(m, m+n)銆傝屽乏瀛愭爲鍜屽彸瀛愭爲鍙堝皢榪涜鍚屾牱鐨勮綆椼傛敞鎰忔渶緇堢粨鏋滆-1錛堝噺鍘誨師鏈殑閭g鎺掑垪鏂瑰紡錛?br />

 1 #1569
 2 #Runtime: 173 ms (Beats 71.74%)
 3 #Memory: 21.8 MB (Beats 51.9%)
 4 
 5 class Solution:
 6     def numOfWays(self, nums: List[int]) -> int:
 7         MOD = 10 ** 9 + 7
 8 
 9         def cal(seq):
10             if not seq:
11                 return 1
12             root = seq[0]
13             l_tree = [num for num in seq if num < root]
14             r_tree = [num for num in seq if num > root]
15             return math.comb(len(l_tree) + len(r_tree), len(l_tree)) * cal(l_tree) * cal(r_tree) % MOD
16         return (cal(nums) - 1) % MOD


Uriel 2023-06-16 17:23 鍙戣〃璇勮
]]>
[LeetCode]1547. Minimum Cost to Cut a Stick (Hard) Python-2023.05.28http://m.shnenglu.com/Uriel/articles/229909.htmlUrielUrielSun, 28 May 2023 13:52:00 GMThttp://m.shnenglu.com/Uriel/articles/229909.htmlhttp://m.shnenglu.com/Uriel/comments/229909.htmlhttp://m.shnenglu.com/Uriel/articles/229909.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/229909.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/229909.html鍜孌iscussion鍐嶆瀛﹀埌lru_cache鐨勭敤娉?br />

 1 #1547
 2 #Runtime: 761 ms (Beats 87.80%)
 3 #Memory: 20.5 MB (Beats 5.95%)
 4 
 5 class Solution:
 6     def minCost(self, n: int, cuts: List[int]) -> int:
 7         cuts.append(0)
 8         cuts.append(n)
 9         cuts.sort()
10 
11         @functools.lru_cache(None)
12         def dp(x, y):
13             if x >= y - 1:
14                 return 0
15             return cuts[y] - cuts[x] + min((dp(x, k) + dp(k, y) for k in range(x + 1, y)), default = 0)
16         return dp(0, len(cuts) - 1)


Uriel 2023-05-28 21:52 鍙戣〃璇勮
]]>
[LeetCode]87. Scramble String (Hard) Python-2023.03.30http://m.shnenglu.com/Uriel/articles/229792.htmlUrielUrielThu, 30 Mar 2023 08:51:00 GMThttp://m.shnenglu.com/Uriel/articles/229792.htmlhttp://m.shnenglu.com/Uriel/comments/229792.htmlhttp://m.shnenglu.com/Uriel/articles/229792.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/229792.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/229792.html
鐢ㄤ簡姣旇緝鏆村姏鐨勫仛娉曪紝絀蜂婦鎵鏈夋搷浣滅殑鍙兘鎬э紝鐢ㄤ簡Discussion涓褰曚笅宸茬粡鏆村姏鏋氫婦榪囩殑緇撴灉錛屽惁鍒欎細TLE
https://leetcode.com/problems/scramble-string/solutions/3357439/easy-solutions-in-java-python-and-c-look-at-once-with-exaplanation


 1 #1402
 2 #Runtime: 222 ms (Beats 21.95%)
 3 #Memory: 20.5 MB (Beats 7.32%)
 4 
 5 class Solution(object):
 6     def isScramble(self, s1, s2):
 7         """
 8         :type s1: str
 9         :type s2: str
10         :rtype: bool
11         """
12         if len(s1) != len(s2):
13             return False
14         if s1 == s2:
15             return True
16         if len(s1) == 1:
17             return False
18         t = s1 + " " + s2
19         if t in self.solved:
20             return self.solved[t]
21         for i in range(1, len(s1)):
22             if self.isScramble(s1[0:i], s2[0:i]) and self.isScramble(s1[i:], s2[i:]):
23                 self.solved[t] = True
24                 return True
25             if self.isScramble(s1[0:i], s2[len(s1)-i:]) and self.isScramble(s1[i:], s2[0:len(s1)-i]):
26                 self.solved[t] = True
27                 return True
28         self.solved[t] = False
29         return False
30     solved = {}


Uriel 2023-03-30 16:51 鍙戣〃璇勮
]]>
[LeetCode]427. Construct Quad Tree (Medium) Python-2023.02.27http://m.shnenglu.com/Uriel/articles/229704.htmlUrielUrielMon, 27 Feb 2023 12:57:00 GMThttp://m.shnenglu.com/Uriel/articles/229704.htmlhttp://m.shnenglu.com/Uriel/comments/229704.htmlhttp://m.shnenglu.com/Uriel/articles/229704.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/229704.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/229704.html

 1 #427
 2 #Runtime: 100 ms (Beats 98.35%)
 3 #Memory: 14.7 MB (Beats 86.50%)
 4 
 5 class Node:
 6     def __init__(self, val, isLeaf, topLeft = None, topRight = None, bottomLeft = None, bottomRight = None):
 7         self.val = val
 8         self.isLeaf = isLeaf
 9         self.topLeft = topLeft
10         self.topRight = topRight
11         self.bottomLeft = bottomLeft
12         self.bottomRight = bottomRight
13 
14 
15 class Solution:
16     def isLeaf(self, grid, x, y, w):
17         for i in range(x, x + w):
18             for j in range(y, y + w):
19                 if grid[x][y] != grid[i][j]:
20                     return False
21         return True
22 
23     def BuildTree(self, grid, x, y, w):
24         if self.isLeaf(grid, x, y, w):
25             return Node(grid[x][y] == 1, True)
26         r = Node(True, False)
27         r.topLeft = self.BuildTree(grid, x, y, w // 2)
28         r.topRight = self.BuildTree(grid, x, y + w // 2, w // 2)
29         r.bottomLeft = self.BuildTree(grid, x + w // 2, y, w // 2)
30         r.bottomRight = self.BuildTree(grid, x + w // 2, y + w // 2, w // 2)
31         return r
32 
33     def construct(self, grid: List[List[int]]) -> Node:
34         return self.BuildTree(grid, 0, 0, len(grid))


Uriel 2023-02-27 20:57 鍙戣〃璇勮
]]>
[LeetCode]222. Count Complete Tree Nodes (Medium) Python-2022.11.15http://m.shnenglu.com/Uriel/articles/229519.htmlUrielUrielTue, 15 Nov 2022 10:58:00 GMThttp://m.shnenglu.com/Uriel/articles/229519.htmlhttp://m.shnenglu.com/Uriel/comments/229519.htmlhttp://m.shnenglu.com/Uriel/articles/229519.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/229519.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/229519.html
鏂規硶涓錛氬厛DFS錛屼笉鏂蛋宸﹀瓙鏍戠殑璺緞錛岀畻鍑轟簩鍙夋爲灞傛暟max_depth錛岄偅涔堟渶鍚庝竴灞傝妭鐐圭殑鏁伴噺涓篬1, 2^(max_depth-1)]錛岀洿鎺ヤ簩鍒嗚繖涓寖鍥達紝鐒跺悗綆楀嚭鏈鍚庝竴涓彾瀛愮粨鐐硅惤鍦ㄥ摢閲岋紝鐞嗚澶嶆潅搴(logn)*O(logn)

 1 #222
 2 #Runtime: 156 ms
 3 #Memory Usage: 29.2 MB
 4 
 5 # Definition for a binary tree node.
 6 # class TreeNode(object):
 7 #     def __init__(self, val=0, left=None, right=None):
 8 #         self.val = val
 9 #         self.left = left
10 #         self.right = right
11 class Solution(object):
12     def binarySearch(self, root, depth, mid, l, r):
13         if depth == self.max_depth - 1: 
14             if root:
15                 return True
16             return False
17         if mid <= (l + r)//2:
18             return self.binarySearch(root.left, depth + 1, mid, l, (l + r)//2)
19         else:
20             return self.binarySearch(root.right, depth + 1, mid, (l + r)//2, r) 
21             
22     def countNodes(self, root):
23         """
24         :type root: TreeNode
25         :rtype: int
26         """
27         self.max_depth = 0
28         rt = root
29         while rt:
30             rt = rt.left
31             self.max_depth = self.max_depth + 1
32         if not self.max_depth:
33             return 0
34         l = 1
35         r = 2**(self.max_depth - 1)
36         while l < r:
37             mid = (l + r) // 2 + (l + r) % 2
38             if self.binarySearch(root, 0, mid, 1, 2**(self.max_depth - 1)):
39                 l = mid
40             else:
41                 r = mid - 1
42         return l + 2**(self.max_depth - 1) - 1

鏂規硶浜岋細鐩存帴涓嶆柇浜屽垎鍦伴掑綊鎵懼乏鍙沖瓙鏍戯紝鐩村埌閬囧埌鏌愪釜婊′簩鍙夋爲鑺傜偣錛岀劧鍚巗um(宸﹀瓙鏍戠殑鎼滅儲緇撴灉)+sum(鍙沖瓙鏍戠殑鎼滅儲緇撴灉)+1錛堟牴緇撶偣錛夛紝鐞嗚澶嶆潅搴(logn)*O(logn)

 1 #222
 2 #Runtime: 137 ms
 3 #Memory Usage: 29.2 MB
 4 
 5 # Definition for a binary tree node.
 6 # class TreeNode(object):
 7 #     def __init__(self, val=0, left=None, right=None):
 8 #         self.val = val
 9 #         self.left = left
10 #         self.right = right
11 class Solution(object):
12     def DFS(self, root, fg):
13         if not root:
14             return 1
15         if fg == 0:
16             return self.DFS(root.left, 0) + 1
17         return self.DFS(root.right, 1) + 1
18             
19     def countNodes(self, root):
20         """
21         :type root: TreeNode
22         :rtype: int
23         """
24         if not root:
25             return 0
26         depth_l = self.DFS(root.left, 0)
27         depth_r = self.DFS(root.right, 1)
28         if depth_l == depth_r:
29             return 2**depth_l - 1
30         return self.countNodes(root.left) + self.countNodes(root.right) + 1

鏂規硶涓夛細鐩存帴DFS鏁存5鏍戞眰鑺傜偣鏁伴噺錛屽鏉傚害O(n)錛屾病鎯沖埌榪欎釜鏂規硶鍙嶈屾渶蹇?..

 1 #222
 2 #Runtime: 87 ms
 3 #Memory Usage: 29.4 MB
 4 
 5 # Definition for a binary tree node.
 6 # class TreeNode(object):
 7 #     def __init__(self, val=0, left=None, right=None):
 8 #         self.val = val
 9 #         self.left = left
10 #         self.right = right
11 class Solution(object):
12     def DFS(self, root):
13         if not root:
14             return
15         self.ans += 1
16         self.DFS(root.left)
17         self.DFS(root.right)
18             
19     def countNodes(self, root):
20         """
21         :type root: TreeNode
22         :rtype: int
23         """
24         self.ans = 0
25         self.DFS(root)
26         return self.ans


Uriel 2022-11-15 18:58 鍙戣〃璇勮
]]>
[LeetCode]22. Generate Parentheses (Medium) Python-2022.10.21http://m.shnenglu.com/Uriel/articles/229448.htmlUrielUrielFri, 21 Oct 2022 22:10:00 GMThttp://m.shnenglu.com/Uriel/articles/229448.htmlhttp://m.shnenglu.com/Uriel/comments/229448.htmlhttp://m.shnenglu.com/Uriel/articles/229448.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/229448.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/229448.html鐢熸垚鍖歸厤鐨勬嫭鍙峰錛岀畝鍗旸FS
 1 class Solution(object):
 2     ans = []
 3     def DFS(self, str, n, pp):
 4         if n == 0:
 5             if pp == 0:
 6                 self.ans.append(str)
 7                 str = ''
 8                 return
 9         if n > 0:
10             self.DFS(str+'(', n-1, pp+1)
11         if pp > 0:
12             self.DFS(str+')', n, pp-1)
13         
14         
15     def generateParenthesis(self, n):
16         """
17         :type n: int
18         :rtype: List[str]
19         """
20         self.ans = []
21         self.DFS('', n, 0)
22         return self.ans


Uriel 2022-10-22 06:10 鍙戣〃璇勮
]]>
POJ 1977 Odd Loving Bakers---浜屽垎鐭╅樀榪炰箻http://m.shnenglu.com/Uriel/articles/106771.htmlUrielUrielFri, 29 Jan 2010 19:17:00 GMThttp://m.shnenglu.com/Uriel/articles/106771.htmlhttp://m.shnenglu.com/Uriel/comments/106771.htmlhttp://m.shnenglu.com/Uriel/articles/106771.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/106771.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/106771.html闃呰鍏ㄦ枃

Uriel 2010-01-30 03:17 鍙戣〃璇勮
]]>
POJ 1747 Expression---閫掑綊http://m.shnenglu.com/Uriel/articles/97776.htmlUrielUrielFri, 02 Oct 2009 17:36:00 GMThttp://m.shnenglu.com/Uriel/articles/97776.htmlhttp://m.shnenglu.com/Uriel/comments/97776.htmlhttp://m.shnenglu.com/Uriel/articles/97776.html#Feedback0http://m.shnenglu.com/Uriel/comments/commentRss/97776.htmlhttp://m.shnenglu.com/Uriel/services/trackbacks/97776.html鍔犲叆涓嬫爣搴旇涓嶇敤榪欎箞楹葷儲銆傘俿scanf閭d簺紲炲鐨勪笢瑗塊兘榪樹笉浼氥傘傚氨鐢ㄧ尌鐞愭柟娉曠‖鏉ヤ簡銆傘傘? -||
澶х墰浠笉鍚濇寚鏁欍傘傚姞涓嬫爣閭i噷鎬庝箞鏀逛笅銆傘?br>
/*Problem: 1747  User: Uriel 
   Memory: 1184K  Time: 141MS 
   Language: C++  Result: Accepted
*/
 

#include
<stdio.h>
#include
<stdlib.h>
#include
<string.h>

char str[105][10000];
char temp[102][4]={"0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30",
                   
"31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60",
                   
"61","62","63","64","65","66","67","68","69","70","71","72","73","74","75","76","77","78","79","80","81","82","83","84","85","86","87","88","89",
                   
"90","91","92","93","94","95","96","97","98","99","100"}
;
int n,st;

int min(int a,int b)
{
    
return a < b ? a: b;
}


void Sov(int a)
{
    
if(a==1)return ;
    Sov(a
-1);
    strcpy(str[a],
"((A");
    strcat(str[a],temp[a
-1]);
    strcat(str[a],
"|B");
    strcat(str[a],temp[a
-1]);
    strcat(str[a],
")|(");
    strcat(str[a],str[a
-1]);
    strcat(str[a],
"|((A");
    strcat(str[a],temp[a
-1]);
    strcat(str[a],
"|A");
    strcat(str[a],temp[a
-1]);
    strcat(str[a],
")|(B");
    strcat(str[a],temp[a
-1]);
    strcat(str[a],
"|B");
    strcat(str[a],temp[a
-1]);
    strcat(str[a],
"))))");
}


int main()
{
    scanf(
"%d",&n);
    memset(str,
0x00,sizeof(str));
    strcpy(str[
1],"((A0|B0)|(A0|B0))");
    st
=1;
    Sov(n);
    
for(int i=0;i<min(strlen(str[n]),50*n);i++)
    
{
        printf(
"%c",str[n][i]);
    }

    printf(
"\n");
    
return 0;
}




Uriel 2009-10-03 01:36 鍙戣〃璇勮
]]>
POJ 3233 Matrix Power Series---浜屽垎錛岃漿縐葷煩闃?/title><link>http://m.shnenglu.com/Uriel/articles/94201.html</link><dc:creator>Uriel</dc:creator><author>Uriel</author><pubDate>Sun, 23 Aug 2009 14:32:00 GMT</pubDate><guid>http://m.shnenglu.com/Uriel/articles/94201.html</guid><wfw:comment>http://m.shnenglu.com/Uriel/comments/94201.html</wfw:comment><comments>http://m.shnenglu.com/Uriel/articles/94201.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://m.shnenglu.com/Uriel/comments/commentRss/94201.html</wfw:commentRss><trackback:ping>http://m.shnenglu.com/Uriel/services/trackbacks/94201.html</trackback:ping><description><![CDATA[<div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"><img id=Codehighlighter1_0_93_Open_Image onclick="this.style.display='none'; Codehighlighter1_0_93_Open_Text.style.display='none'; Codehighlighter1_0_93_Closed_Image.style.display='inline'; Codehighlighter1_0_93_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockStart.gif" align=top><img id=Codehighlighter1_0_93_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_0_93_Closed_Text.style.display='none'; Codehighlighter1_0_93_Open_Image.style.display='inline'; Codehighlighter1_0_93_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedBlock.gif" align=top><span id=Codehighlighter1_0_93_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff">/**/</span><span id=Codehighlighter1_0_93_Open_Text><span style="COLOR: #008000">/*</span><span style="COLOR: #008000">Problem: 3233  User: Uriel <br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>   Memory: 208K  Time: 172MS <br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" align=top>   Language: C++  Result: Accepted</span><span style="COLOR: #008000">*/</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>#include</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">stdio.h</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>#include</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">stdlib.h</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #0000ff">const</span><span style="COLOR: #000000"> </span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> MAX</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">65</span><span style="COLOR: #000000">;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>typedef </span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> M[MAX][MAX];<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> n,m;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>M </span><span style="COLOR: #0000ff">in</span><span style="COLOR: #000000">;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #0000ff">void</span><span style="COLOR: #000000"> copy(M x,M y)<br><img id=Codehighlighter1_211_293_Open_Image onclick="this.style.display='none'; Codehighlighter1_211_293_Open_Text.style.display='none'; Codehighlighter1_211_293_Closed_Image.style.display='inline'; Codehighlighter1_211_293_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockStart.gif" align=top><img id=Codehighlighter1_211_293_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_211_293_Closed_Text.style.display='none'; Codehighlighter1_211_293_Open_Image.style.display='inline'; Codehighlighter1_211_293_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedBlock.gif" align=top></span><span id=Codehighlighter1_211_293_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_211_293_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> i,j;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(i</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;i</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">2</span><span style="COLOR: #000000">*</span><span style="COLOR: #000000">n;</span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">i) <br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(j</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;j</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">2</span><span style="COLOR: #000000">*</span><span style="COLOR: #000000">n;</span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">j)<br><img id=Codehighlighter1_267_291_Open_Image onclick="this.style.display='none'; Codehighlighter1_267_291_Open_Text.style.display='none'; Codehighlighter1_267_291_Closed_Image.style.display='inline'; Codehighlighter1_267_291_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_267_291_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_267_291_Closed_Text.style.display='none'; Codehighlighter1_267_291_Open_Image.style.display='inline'; Codehighlighter1_267_291_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>        </span><span id=Codehighlighter1_267_291_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_267_291_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>            x[i][j]</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">y[i][j];<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>        }</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" align=top>}</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #0000ff">void</span><span style="COLOR: #000000"> mu(M x,M y)<br><img id=Codehighlighter1_313_546_Open_Image onclick="this.style.display='none'; Codehighlighter1_313_546_Open_Text.style.display='none'; Codehighlighter1_313_546_Closed_Image.style.display='inline'; Codehighlighter1_313_546_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockStart.gif" align=top><img id=Codehighlighter1_313_546_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_313_546_Closed_Text.style.display='none'; Codehighlighter1_313_546_Open_Image.style.display='inline'; Codehighlighter1_313_546_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedBlock.gif" align=top></span><span id=Codehighlighter1_313_546_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_313_546_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    M C;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> i,j,k;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> t;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(i</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;i</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">2</span><span style="COLOR: #000000">*</span><span style="COLOR: #000000">n;</span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">i)<br><img id=Codehighlighter1_365_532_Open_Image onclick="this.style.display='none'; Codehighlighter1_365_532_Open_Text.style.display='none'; Codehighlighter1_365_532_Closed_Image.style.display='inline'; Codehighlighter1_365_532_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_365_532_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_365_532_Closed_Text.style.display='none'; Codehighlighter1_365_532_Open_Image.style.display='inline'; Codehighlighter1_365_532_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>    </span><span id=Codehighlighter1_365_532_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_365_532_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(j</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;j</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">2</span><span style="COLOR: #000000">*</span><span style="COLOR: #000000">n;</span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">j)<br><img id=Codehighlighter1_390_529_Open_Image onclick="this.style.display='none'; Codehighlighter1_390_529_Open_Text.style.display='none'; Codehighlighter1_390_529_Closed_Image.style.display='inline'; Codehighlighter1_390_529_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_390_529_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_390_529_Closed_Text.style.display='none'; Codehighlighter1_390_529_Open_Image.style.display='inline'; Codehighlighter1_390_529_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>        </span><span id=Codehighlighter1_390_529_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_390_529_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>            t</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>            </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(k</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;k</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">2</span><span style="COLOR: #000000">*</span><span style="COLOR: #000000">n;</span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">k)<br><img id=Codehighlighter1_425_511_Open_Image onclick="this.style.display='none'; Codehighlighter1_425_511_Open_Text.style.display='none'; Codehighlighter1_425_511_Closed_Image.style.display='inline'; Codehighlighter1_425_511_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_425_511_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_425_511_Closed_Text.style.display='none'; Codehighlighter1_425_511_Open_Image.style.display='inline'; Codehighlighter1_425_511_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>            </span><span id=Codehighlighter1_425_511_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_425_511_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>                </span><span style="COLOR: #0000ff">if</span><span style="COLOR: #000000">(x[i][k] </span><span style="COLOR: #000000">&&</span><span style="COLOR: #000000"> y[k][j])<br><img id=Codehighlighter1_470_506_Open_Image onclick="this.style.display='none'; Codehighlighter1_470_506_Open_Text.style.display='none'; Codehighlighter1_470_506_Closed_Image.style.display='inline'; Codehighlighter1_470_506_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_470_506_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_470_506_Closed_Text.style.display='none'; Codehighlighter1_470_506_Open_Image.style.display='inline'; Codehighlighter1_470_506_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>                </span><span id=Codehighlighter1_470_506_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_470_506_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>                    t</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">(t</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">x[i][k]</span><span style="COLOR: #000000">*</span><span style="COLOR: #000000">y[k][j])</span><span style="COLOR: #000000">%</span><span style="COLOR: #000000">m;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>                }</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>            }</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>            C[i][j]</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">t;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>        }</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>    }</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    copy(x,C);<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" align=top>}</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #0000ff">void</span><span style="COLOR: #000000"> BS(M x,</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> k)<br><img id=Codehighlighter1_568_666_Open_Image onclick="this.style.display='none'; Codehighlighter1_568_666_Open_Text.style.display='none'; Codehighlighter1_568_666_Closed_Image.style.display='inline'; Codehighlighter1_568_666_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockStart.gif" align=top><img id=Codehighlighter1_568_666_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_568_666_Closed_Text.style.display='none'; Codehighlighter1_568_666_Open_Image.style.display='inline'; Codehighlighter1_568_666_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedBlock.gif" align=top></span><span id=Codehighlighter1_568_666_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_568_666_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">if</span><span style="COLOR: #000000">(k</span><span style="COLOR: #000000">==</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">)<br><img id=Codehighlighter1_581_611_Open_Image onclick="this.style.display='none'; Codehighlighter1_581_611_Open_Text.style.display='none'; Codehighlighter1_581_611_Closed_Image.style.display='inline'; Codehighlighter1_581_611_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_581_611_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_581_611_Closed_Text.style.display='none'; Codehighlighter1_581_611_Open_Image.style.display='inline'; Codehighlighter1_581_611_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>    </span><span id=Codehighlighter1_581_611_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_581_611_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        copy(x,</span><span style="COLOR: #0000ff">in</span><span style="COLOR: #000000">);<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        </span><span style="COLOR: #0000ff">return</span><span style="COLOR: #000000">;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>    }</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    BS(x,k</span><span style="COLOR: #000000">/</span><span style="COLOR: #000000">2</span><span style="COLOR: #000000">);<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    mu(x,x);<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">if</span><span style="COLOR: #000000">(k </span><span style="COLOR: #000000">&</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">)  <br><img id=Codehighlighter1_649_664_Open_Image onclick="this.style.display='none'; Codehighlighter1_649_664_Open_Text.style.display='none'; Codehighlighter1_649_664_Closed_Image.style.display='inline'; Codehighlighter1_649_664_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_649_664_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_649_664_Closed_Text.style.display='none'; Codehighlighter1_649_664_Open_Image.style.display='inline'; Codehighlighter1_649_664_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>    </span><span id=Codehighlighter1_649_664_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_649_664_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        mu(x,</span><span style="COLOR: #0000ff">in</span><span style="COLOR: #000000">);<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>    }</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" align=top>}</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> main()<br><img id=Codehighlighter1_680_1057_Open_Image onclick="this.style.display='none'; Codehighlighter1_680_1057_Open_Text.style.display='none'; Codehighlighter1_680_1057_Closed_Image.style.display='inline'; Codehighlighter1_680_1057_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockStart.gif" align=top><img id=Codehighlighter1_680_1057_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_680_1057_Closed_Text.style.display='none'; Codehighlighter1_680_1057_Open_Image.style.display='inline'; Codehighlighter1_680_1057_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedBlock.gif" align=top></span><span id=Codehighlighter1_680_1057_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_680_1057_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> k;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    scanf(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">%d %d %d</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">,</span><span style="COLOR: #000000">&</span><span style="COLOR: #000000">n,</span><span style="COLOR: #000000">&</span><span style="COLOR: #000000">k,</span><span style="COLOR: #000000">&</span><span style="COLOR: #000000">m) ;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> i,j;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(i</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;i</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">n;i</span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">)<br><img id=Codehighlighter1_750_906_Open_Image onclick="this.style.display='none'; Codehighlighter1_750_906_Open_Text.style.display='none'; Codehighlighter1_750_906_Closed_Image.style.display='inline'; Codehighlighter1_750_906_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_750_906_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_750_906_Closed_Text.style.display='none'; Codehighlighter1_750_906_Open_Image.style.display='inline'; Codehighlighter1_750_906_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>     </span><span id=Codehighlighter1_750_906_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_750_906_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(j</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;j</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">n;j</span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">)<br><img id=Codehighlighter1_773_879_Open_Image onclick="this.style.display='none'; Codehighlighter1_773_879_Open_Text.style.display='none'; Codehighlighter1_773_879_Closed_Image.style.display='inline'; Codehighlighter1_773_879_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_773_879_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_773_879_Closed_Text.style.display='none'; Codehighlighter1_773_879_Open_Image.style.display='inline'; Codehighlighter1_773_879_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>        </span><span id=Codehighlighter1_773_879_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_773_879_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>             scanf(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">%d</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">,</span><span style="COLOR: #000000">&</span><span style="COLOR: #0000ff">in</span><span style="COLOR: #000000">[i][j]);<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>             </span><span style="COLOR: #0000ff">in</span><span style="COLOR: #000000">[i][j</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">n]</span><span style="COLOR: #000000">=</span><span style="COLOR: #0000ff">in</span><span style="COLOR: #000000">[i][j];<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>             </span><span style="COLOR: #0000ff">in</span><span style="COLOR: #000000">[i</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">n][j]</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>             </span><span style="COLOR: #0000ff">in</span><span style="COLOR: #000000">[i</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">n][j</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">n]</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>        }</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        </span><span style="COLOR: #0000ff">in</span><span style="COLOR: #000000">[i</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">n][i</span><span style="COLOR: #000000">+</span><span style="COLOR: #000000">n]</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">1</span><span style="COLOR: #000000">;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>    }</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    M x;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    BS(x,k);  <br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(i</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;i</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">n;</span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">i)<br><img id=Codehighlighter1_948_1025_Open_Image onclick="this.style.display='none'; Codehighlighter1_948_1025_Open_Text.style.display='none'; Codehighlighter1_948_1025_Closed_Image.style.display='inline'; Codehighlighter1_948_1025_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_948_1025_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_948_1025_Closed_Text.style.display='none'; Codehighlighter1_948_1025_Open_Image.style.display='inline'; Codehighlighter1_948_1025_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>    </span><span id=Codehighlighter1_948_1025_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_948_1025_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(j</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">n;j</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">2</span><span style="COLOR: #000000">*</span><span style="COLOR: #000000">n;</span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">j)<br><img id=Codehighlighter1_973_1004_Open_Image onclick="this.style.display='none'; Codehighlighter1_973_1004_Open_Text.style.display='none'; Codehighlighter1_973_1004_Closed_Image.style.display='inline'; Codehighlighter1_973_1004_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif" align=top><img id=Codehighlighter1_973_1004_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_973_1004_Closed_Text.style.display='none'; Codehighlighter1_973_1004_Open_Image.style.display='inline'; Codehighlighter1_973_1004_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedSubBlock.gif" align=top>        </span><span id=Codehighlighter1_973_1004_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_973_1004_Open_Text><span style="COLOR: #000000">{<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>            printf(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">%d </span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">,x[i][j]) ;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>        }</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>        printf(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">\n</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">) ;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif" align=top>    }</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    system(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">PAUSE</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">);<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">return</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000"> ;<br><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" align=top>}</span></span><span style="COLOR: #000000"><br><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span></div> 榪欓鎼炰簡寰堜箙銆傘傜涓嬈″啓浜屽垎錛岀涓嬈$敤鍋氱煩闃典箻娉曘傘?br>杞Щ鐭╅樀濂藉己澶?br>| A  A |<br>| 0   I  |<br><br> <img src ="http://m.shnenglu.com/Uriel/aggbug/94201.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://m.shnenglu.com/Uriel/" target="_blank">Uriel</a> 2009-08-23 22:32 <a href="http://m.shnenglu.com/Uriel/articles/94201.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <a href="http://m.shnenglu.com/">青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品</a> <div style="position:fixed;left:-9000px;top:-9000px;"><font id="pjuwb"></font><button id="pjuwb"><pre id="pjuwb"></pre></button><sub id="pjuwb"></sub><tbody id="pjuwb"><var id="pjuwb"><address id="pjuwb"></address></var></tbody><listing id="pjuwb"><label id="pjuwb"><strong id="pjuwb"></strong></label></listing><wbr id="pjuwb"><small id="pjuwb"><tbody id="pjuwb"></tbody></small></wbr><ins id="pjuwb"><xmp id="pjuwb"></xmp></ins><style id="pjuwb"></style><label id="pjuwb"><em id="pjuwb"><li id="pjuwb"></li></em></label><samp id="pjuwb"></samp><menu id="pjuwb"><input id="pjuwb"></input></menu><pre id="pjuwb"><tbody id="pjuwb"><tfoot id="pjuwb"><button id="pjuwb"></button></tfoot></tbody></pre><form id="pjuwb"></form><i id="pjuwb"><style id="pjuwb"><label id="pjuwb"><sup id="pjuwb"></sup></label></style></i><li id="pjuwb"><table id="pjuwb"><abbr id="pjuwb"></abbr></table></li><video id="pjuwb"></video><dfn id="pjuwb"></dfn><progress id="pjuwb"></progress><strong id="pjuwb"></strong><mark id="pjuwb"></mark><em id="pjuwb"></em><tbody id="pjuwb"><p id="pjuwb"><strike id="pjuwb"><acronym id="pjuwb"></acronym></strike></p></tbody><option id="pjuwb"></option><strike id="pjuwb"></strike><u id="pjuwb"></u><td id="pjuwb"><center id="pjuwb"><tr id="pjuwb"></tr></center></td><em id="pjuwb"><mark id="pjuwb"><em id="pjuwb"><tt id="pjuwb"></tt></em></mark></em><strong id="pjuwb"></strong><wbr id="pjuwb"></wbr><s id="pjuwb"></s><strong id="pjuwb"></strong><legend id="pjuwb"></legend><nav id="pjuwb"></nav><dl id="pjuwb"><th id="pjuwb"><dl id="pjuwb"></dl></th></dl><noframes id="pjuwb"><ins id="pjuwb"></ins></noframes><font id="pjuwb"></font><strike id="pjuwb"><i id="pjuwb"><style id="pjuwb"><label id="pjuwb"></label></style></i></strike><output id="pjuwb"></output><thead id="pjuwb"><pre id="pjuwb"></pre></thead><source id="pjuwb"></source><menuitem id="pjuwb"><wbr id="pjuwb"></wbr></menuitem><pre id="pjuwb"><span id="pjuwb"><pre id="pjuwb"><big id="pjuwb"></big></pre></span></pre><cite id="pjuwb"><fieldset id="pjuwb"><s id="pjuwb"><rt id="pjuwb"></rt></s></fieldset></cite><big id="pjuwb"><progress id="pjuwb"><big id="pjuwb"></big></progress></big><samp id="pjuwb"><delect id="pjuwb"></delect></samp><dl id="pjuwb"></dl><strike id="pjuwb"><nav id="pjuwb"><dl id="pjuwb"><strong id="pjuwb"></strong></dl></nav></strike><tbody id="pjuwb"><b id="pjuwb"><optgroup id="pjuwb"><rp id="pjuwb"></rp></optgroup></b></tbody><em id="pjuwb"></em><xmp id="pjuwb"><blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote></xmp> <i id="pjuwb"><abbr id="pjuwb"><i id="pjuwb"><abbr id="pjuwb"></abbr></i></abbr></i><center id="pjuwb"><acronym id="pjuwb"><center id="pjuwb"></center></acronym></center><pre id="pjuwb"></pre><ul id="pjuwb"><thead id="pjuwb"></thead></ul><blockquote id="pjuwb"><pre id="pjuwb"><sup id="pjuwb"></sup></pre></blockquote><acronym id="pjuwb"></acronym><big id="pjuwb"><s id="pjuwb"></s></big><th id="pjuwb"></th><th id="pjuwb"></th><tbody id="pjuwb"></tbody><thead id="pjuwb"><strike id="pjuwb"></strike></thead><th id="pjuwb"><dl id="pjuwb"><wbr id="pjuwb"></wbr></dl></th><dl id="pjuwb"><strong id="pjuwb"></strong></dl><abbr id="pjuwb"><noframes id="pjuwb"><noscript id="pjuwb"></noscript></noframes></abbr><td id="pjuwb"><ol id="pjuwb"></ol></td><li id="pjuwb"><noscript id="pjuwb"><abbr id="pjuwb"></abbr></noscript></li><small id="pjuwb"><bdo id="pjuwb"><nav id="pjuwb"></nav></bdo></small><style id="pjuwb"></style><optgroup id="pjuwb"><table id="pjuwb"></table></optgroup><center id="pjuwb"><tr id="pjuwb"><dfn id="pjuwb"></dfn></tr></center><th id="pjuwb"></th><u id="pjuwb"></u><tfoot id="pjuwb"><legend id="pjuwb"><i id="pjuwb"></i></legend></tfoot><mark id="pjuwb"></mark><meter id="pjuwb"></meter><nav id="pjuwb"></nav><acronym id="pjuwb"><pre id="pjuwb"><acronym id="pjuwb"><ul id="pjuwb"></ul></acronym></pre></acronym><acronym id="pjuwb"><pre id="pjuwb"><acronym id="pjuwb"><ul id="pjuwb"></ul></acronym></pre></acronym><nobr id="pjuwb"></nobr><sub id="pjuwb"><th id="pjuwb"><menuitem id="pjuwb"><wbr id="pjuwb"></wbr></menuitem></th></sub><thead id="pjuwb"><sub id="pjuwb"></sub></thead><ul id="pjuwb"><address id="pjuwb"><menuitem id="pjuwb"><meter id="pjuwb"></meter></menuitem></address></ul><dfn id="pjuwb"></dfn><pre id="pjuwb"></pre><input id="pjuwb"><cite id="pjuwb"><fieldset id="pjuwb"></fieldset></cite></input><u id="pjuwb"><form id="pjuwb"><u id="pjuwb"></u></form></u><kbd id="pjuwb"><em id="pjuwb"><mark id="pjuwb"></mark></em></kbd><tr id="pjuwb"></tr><del id="pjuwb"><form id="pjuwb"><address id="pjuwb"></address></form></del><tfoot id="pjuwb"><legend id="pjuwb"><ol id="pjuwb"><dl id="pjuwb"></dl></ol></legend></tfoot><menu id="pjuwb"><nobr id="pjuwb"><th id="pjuwb"><nobr id="pjuwb"></nobr></th></nobr></menu><fieldset id="pjuwb"></fieldset><pre id="pjuwb"><blockquote id="pjuwb"><samp id="pjuwb"></samp></blockquote></pre><xmp id="pjuwb"><sup id="pjuwb"><pre id="pjuwb"></pre></sup></xmp><span id="pjuwb"><progress id="pjuwb"></progress></span><font id="pjuwb"></font><var id="pjuwb"><abbr id="pjuwb"></abbr></var><strong id="pjuwb"><label id="pjuwb"><i id="pjuwb"><legend id="pjuwb"></legend></i></label></strong><tr id="pjuwb"><em id="pjuwb"><em id="pjuwb"><output id="pjuwb"></output></em></em></tr><thead id="pjuwb"><strike id="pjuwb"></strike></thead> <acronym id="pjuwb"></acronym><i id="pjuwb"></i><tt id="pjuwb"></tt><rt id="pjuwb"><source id="pjuwb"><rt id="pjuwb"></rt></source></rt><strike id="pjuwb"><acronym id="pjuwb"></acronym></strike><del id="pjuwb"></del><font id="pjuwb"><output id="pjuwb"><ins id="pjuwb"><output id="pjuwb"></output></ins></output></font><kbd id="pjuwb"><tr id="pjuwb"><kbd id="pjuwb"></kbd></tr></kbd><pre id="pjuwb"><sup id="pjuwb"><delect id="pjuwb"><samp id="pjuwb"></samp></delect></sup></pre><samp id="pjuwb"></samp><track id="pjuwb"></track><tr id="pjuwb"></tr><center id="pjuwb"></center><fieldset id="pjuwb"></fieldset><i id="pjuwb"></i><td id="pjuwb"></td><rt id="pjuwb"></rt><object id="pjuwb"></object><pre id="pjuwb"><progress id="pjuwb"><sub id="pjuwb"><thead id="pjuwb"></thead></sub></progress></pre><kbd id="pjuwb"><tr id="pjuwb"><option id="pjuwb"></option></tr></kbd><output id="pjuwb"><ins id="pjuwb"></ins></output><ol id="pjuwb"></ol><source id="pjuwb"></source><strong id="pjuwb"></strong><ruby id="pjuwb"></ruby><sub id="pjuwb"><meter id="pjuwb"><menuitem id="pjuwb"><meter id="pjuwb"></meter></menuitem></meter></sub><pre id="pjuwb"></pre><center id="pjuwb"></center><tr id="pjuwb"><tbody id="pjuwb"><xmp id="pjuwb"><dd id="pjuwb"></dd></xmp></tbody></tr><video id="pjuwb"></video><pre id="pjuwb"></pre><form id="pjuwb"><optgroup id="pjuwb"></optgroup></form><samp id="pjuwb"></samp><kbd id="pjuwb"></kbd><strong id="pjuwb"><option id="pjuwb"></option></strong><object id="pjuwb"></object><abbr id="pjuwb"><noframes id="pjuwb"><abbr id="pjuwb"></abbr></noframes></abbr><ul id="pjuwb"><del id="pjuwb"><button id="pjuwb"><pre id="pjuwb"></pre></button></del></ul><abbr id="pjuwb"></abbr><strong id="pjuwb"><code id="pjuwb"><strong id="pjuwb"></strong></code></strong><option id="pjuwb"></option><optgroup id="pjuwb"><bdo id="pjuwb"><code id="pjuwb"></code></bdo></optgroup><mark id="pjuwb"><em id="pjuwb"><font id="pjuwb"></font></em></mark><acronym id="pjuwb"><code id="pjuwb"></code></acronym><dl id="pjuwb"></dl><em id="pjuwb"></em><object id="pjuwb"><input id="pjuwb"><object id="pjuwb"></object></input></object><output id="pjuwb"><dd id="pjuwb"></dd></output><option id="pjuwb"><button id="pjuwb"><option id="pjuwb"></option></button></option><small id="pjuwb"></small></div> <a href="http://taikonghua.com" target="_blank">亚洲欧美一区二区三区在线</a>| <a href="http://4466o.com" target="_blank">小黄鸭精品密入口导航</a>| <a href="http://kongtou8.com" target="_blank">亚洲黄网站在线观看</a>| <a href="http://ztqsfw.com" target="_blank">亚洲精品视频免费观看</a>| <a href="http://xvideoxxnx.com" target="_blank">久久精品国产99国产精品</a>| <a href="http://000695.com" target="_blank">国产欧美日韩另类视频免费观看</a>| <a href="http://127mingdao.com" target="_blank">亚洲在线播放电影</a>| <a href="http://www-kj777.com" target="_blank">性做久久久久久久久</a>| <a href="http://x2b2.com" target="_blank">怡红院精品视频</a>| <a href="http://5555547.com" target="_blank">欧美国内亚洲</a>| <a href="http://lalandapps.com" target="_blank">国产精品进线69影院</a>| <a href="http://44cgcg.com" target="_blank">欧美成人有码</a>| <a href="http://2502255.com" target="_blank">国产欧美日韩亚洲</a>| <a href="http://arielteam.com" target="_blank">亚洲黄网站黄</a>| <a href="http://qqx123.com" target="_blank">国产精品一区二区男女羞羞无遮挡 </a>| <a href="http://3344568.com" target="_blank">欧美在线在线</a>| <a href="http://alex-bruni.com" target="_blank">亚洲日韩欧美视频一区</a>| <a href="http://erodasy.com" target="_blank">中文久久精品</a>| <a href="http://492541.com" target="_blank">一区二区三区|亚洲午夜</a>| <a href="http://qhzyxcd.com" target="_blank">欧美一区二区黄色</a>| <a href="http://xashp.com" target="_blank">午夜亚洲性色福利视频</a>| <a href="http://rbet6365.com" target="_blank">欧美va亚洲va国产综合</a>| <a href="http://794278.com" target="_blank">欧美影片第一页</a>| <a href="http://599107.com" target="_blank">国产精品v亚洲精品v日韩精品</a>| <a href="http://xindefalv.com" target="_blank">免费欧美在线视频</a>| <a href="http://qq666qq.com" target="_blank">国产亚洲毛片</a>| <a href="http://myasker.com" target="_blank">久久精品国产69国产精品亚洲</a>| <a href="http://pfpf662.com" target="_blank">欧美亚洲专区</a>| <a href="http://8946286.com" target="_blank">久久综合狠狠综合久久综合88</a>| <a href="http://lctongda.com" target="_blank">欧美日韩黄视频</a>| <a href="http://www8qa.com" target="_blank">av成人动漫</a>| <a href="http://fjrxzscl.com" target="_blank">亚洲欧美激情一区</a>| <a href="http://060607.com" target="_blank">欧美三级日韩三级国产三级</a>| <a href="http://woniuminsu.com" target="_blank">欧美日韩精品免费</a>| <a href="http://caoliu20.com" target="_blank">亚洲免费高清视频</a>| <a href="http://www381818.com" target="_blank">亚洲视频在线观看视频</a>| <a href="http://niceboybao.com" target="_blank">国产精品久久9</a>| <a href="http://aqdav037.com" target="_blank">亚洲欧美日韩系列</a>| <a href="http://kk553.com" target="_blank">免费久久久一本精品久久区</a>| <a href="http://uniconmgt.com" target="_blank">黄色亚洲大片免费在线观看</a>| <a href="http://6133c.com" target="_blank">久久久噜噜噜久久人人看</a>| <a href="http://carboarm.com" target="_blank">久久综合中文色婷婷</a>| <a href="http://44368com.com" target="_blank">亚洲国产91</a>| <a href="http://1177898.com" target="_blank">欧美午夜剧场</a>| <a href="http://xhtd688.com" target="_blank">欧美在线欧美在线</a>| <a href="http://ccc982.com" target="_blank">亚洲麻豆国产自偷在线</a>| <a href="http://y66776.com" target="_blank">亚洲一区免费观看</a>| <a href="http://92ye.com" target="_blank">在线播放日韩</a>| <a href="http://7ccdd.com" target="_blank">欧美性猛交99久久久久99按摩</a>| <a href="http://yjdm139.com" target="_blank">亚洲性感激情</a>| <a href="http://anquye16.com" target="_blank">欧美fxxxxxx另类</a>| <a href="http://yx3369.com" target="_blank">亚洲一区二区高清</a>| <a href="http://dkmcjc.com" target="_blank">在线播放中文一区</a>| <a href="http://sdsptl.com" target="_blank">国产精品亚洲激情</a>| <a href="http://322033.com" target="_blank">欧美黄色精品</a>| <a href="http://8w82.com" target="_blank">免费观看在线综合色</a>| <a href="http://alex-bruni.com" target="_blank">亚洲欧美日韩精品久久亚洲区 </a>| <a href="http://www35211.com" target="_blank">国产精品看片你懂得</a>| <a href="http://www-888005.com" target="_blank">亚洲免费视频成人</a>| <a href="http://388123cc.com" target="_blank">亚洲精华国产欧美</a>| <a href="http://caoliu20.com" target="_blank">久久综合狠狠综合久久综合88</a>| <a href="http://syddzs.com" target="_blank">亚洲小说春色综合另类电影</a>| <a href="http://arielteam.com" target="_blank">国产伦精品一区二区三区免费 </a>| <a href="http://491342.com" target="_blank">日韩视频中文</a>| <a href="http://huayoue.com" target="_blank">樱桃视频在线观看一区</a>| <a href="http://137177.com" target="_blank">国产亚洲一级高清</a>| <a href="http://syfeichi.com" target="_blank">国产亚洲精久久久久久</a>| <a href="http://jiajianpei.com" target="_blank">一区二区三区视频在线看</a>| <a href="http://mimi78.com" target="_blank">欧美专区在线播放</a>| <a href="http://metagasa.com" target="_blank">午夜一区在线</a>| <a href="http://ylnnc.com" target="_blank">香蕉av777xxx色综合一区</a>| <a href="http://naturalgiftfashion.com" target="_blank">亚洲激情一区</a>| <a href="http://15013010203.com" target="_blank">亚洲精品影视</a>| <a href="http://cmtqd.com" target="_blank">亚洲欧美久久</a>| <a href="http://lao64.com" target="_blank">亚洲欧美日韩另类</a>| <a href="http://0370city.com" target="_blank">欧美一二区视频</a>| <a href="http://o3xo.com" target="_blank">久热re这里精品视频在线6</a>| <a href="http://vod3366.com" target="_blank">久久噜噜噜精品国产亚洲综合</a>| <a href="http://305838.com" target="_blank">久久亚洲精选</a>| <a href="http://www134rr.com" target="_blank">媚黑女一区二区</a>| <a href="http://yunpiwang.com" target="_blank">欧美日韩国产免费</a>| <a href="http://372469.com" target="_blank">国产精品免费看</a>| <a href="http://s3yx.com" target="_blank">激情国产一区二区</a>| <a href="http://92ye.com" target="_blank">99re这里只有精品6</a>| <a href="http://alio-ai.com" target="_blank">亚洲综合精品自拍</a>| <a href="http://hjk56.com" target="_blank">久久一区国产</a>| <a href="http://exsecular.com" target="_blank">亚洲精品欧美日韩专区</a>| <a href="http://k91cm.com" target="_blank">亚洲一区亚洲二区</a>| <a href="http://y1bbs.com" target="_blank">久久久www</a>| <a href="http://maiiyou.com" target="_blank">国产精品成人免费视频</a>| <a href="http://xigou666.com" target="_blank">国内精品久久久久久久影视麻豆</a>| <a href="http://www31931.com" target="_blank">尤物在线观看一区</a>| <a href="http://497988.com" target="_blank">久久精品综合网</a>| <a href="http://ttzbdl.com" target="_blank">欧美色欧美亚洲另类二区</a>| <a href="http://cnlbogs.com" target="_blank">国产日韩亚洲</a>| <a href="http://playav111.com" target="_blank">国产精品99久久久久久宅男</a>| <a href="http://44cgcg.com" target="_blank">久久国产欧美日韩精品</a>| <a href="http://9uu91.com" target="_blank">亚洲最新中文字幕</a>| <a href="http://www38044.com" target="_blank">久久野战av</a>| <a href="http://sd-12530.com" target="_blank">国产尤物精品</a>| <a href="http://778877k.com" target="_blank">欧美一区不卡</a>| <a href="http://tcgo903.com" target="_blank">亚洲综合欧美日韩</a>| <a href="http://qiezisp2.com" target="_blank">欧美乱在线观看</a>| <a href="http://nachang5117.com" target="_blank">亚洲精品国产精品国产自</a>| <a href="http://wzsl8.com" target="_blank">欧美中在线观看</a>| <a href="http://ruichengxiang.com" target="_blank">亚洲午夜一二三区视频</a>| <a href="http://wwwcc7777.com" target="_blank">欧美经典一区二区三区</a>| <a href="http://2938423.com" target="_blank">在线免费高清一区二区三区</a>| <a href="http://9876666.com" target="_blank">久久精品成人欧美大片古装</a>| <a href="http://aa56789.com" target="_blank">一本大道久久精品懂色aⅴ</a>| <a href="http://8004006.com" target="_blank">欧美激情一区在线观看</a>| <a href="http://atmub.com" target="_blank">亚洲性视频h</a>| <a href="http://737sihu.com" target="_blank">欧美视频一区二区在线观看</a>| <a href="http://wwwyinyinai149.com" target="_blank">亚洲大片在线观看</a>| <a href="http://77017w.com" target="_blank">欧美成人xxx</a>| <a href="http://xpfuli.com" target="_blank">欧美极品一区</a>| <a href="http://5177jy.com" target="_blank">亚洲免费观看高清在线观看</a>| <a href="http://555hhu.com" target="_blank">欧美成人精精品一区二区频</a>| <a href="http://138128.com" target="_blank">久久精品国产v日韩v亚洲</a>| <a href="http://ahqdlq.com" target="_blank">伊人狠狠色j香婷婷综合</a>| <a href="http://9273829.com" target="_blank">久久综合色天天久久综合图片</a>| <a href="http://330310c.com" target="_blank">午夜精品视频在线观看</a>| <a href="http://seo8138.com" target="_blank">在线成人激情黄色</a>| <a href="http://xjj733.com" target="_blank">亚洲高清免费在线</a>| <a href="http://wwwgay456.com" target="_blank">欧美三级乱码</a>| <a href="http://edtxt.com" target="_blank">久久激情视频久久</a>| <a href="http://2343ww.com" target="_blank">美日韩精品免费</a>| <a href="http://eshop999.com" target="_blank">亚洲天天影视</a>| <a href="http://yymh1056.com" target="_blank">久久精品成人</a>| <a href="http://www-137999.com" target="_blank">一本色道久久综合一区 </a>| <a href="http://wanzhixue.com" target="_blank">亚洲国产福利在线</a>| <a href="http://uuuu30.com" target="_blank">欧美精品一区在线发布</a>| <a href="http://wewe520.com" target="_blank">性做久久久久久免费观看欧美</a>| <a href="http://oimeal.com" target="_blank">久久久久久久综合色一本</a>| <a href="http://123-sj.com" target="_blank">亚洲精品看片</a>| <a href="http://666888123.com" target="_blank">久久久xxx</a>| <a href="http://830085.com" target="_blank">亚洲深夜影院</a>| <a href="http://56667r.com" target="_blank">久久综合精品一区</a>| <a href="http://313cq.com" target="_blank">午夜视黄欧洲亚洲</a>| <a href="http://767296.com" target="_blank">欧美精品一线</a>| <a href="http://gjjlzs.com" target="_blank">免费黄网站欧美</a>| <a href="http://sdsankeguo.com" target="_blank">国产精品一区二区在线观看不卡</a>| <a href="http://bkksd.com" target="_blank">另类春色校园亚洲</a>| <a href="http://www77vcd.com" target="_blank">国产精品欧美一区喷水</a>| <a href="http://7345jj.com" target="_blank">亚洲福利在线视频</a>| <a href="http://4254888.com" target="_blank">国产一区二区无遮挡</a>| <a href="http://hy1598.com" target="_blank">中文国产成人精品久久一</a>| <a href="http://www381818.com" target="_blank">亚洲狠狠丁香婷婷综合久久久</a>| <a href="http://ywy99.com" target="_blank">亚洲色无码播放</a>| <a href="http://783956.com" target="_blank">亚洲免费在线播放</a>| <a href="http://am3757.com" target="_blank">欧美日韩精品一区二区在线播放 </a>| <a href="http://373gg.com" target="_blank">久久av二区</a>| <a href="http://kuaikan97.com" target="_blank">欧美三级网页</a>| <a href="http://tjpzgs.com" target="_blank">亚洲激情一区二区三区</a>| <a href="http://yx3369.com" target="_blank">伊人蜜桃色噜噜激情综合</a>| <a href="http://4448884.com" target="_blank">性色一区二区</a>| <a href="http://avsemm.com" target="_blank">欧美中文字幕在线</a>| <a href="http://621762.com" target="_blank">国产精品视频免费一区</a>| <a href="http://sauske.com" target="_blank">一区二区毛片</a>| <a href="http://ycgg008.com" target="_blank">欧美在线免费</a>| <a href="http://ncyy4.com" target="_blank">亚洲成色www久久网站</a>| <a href="http://017492.com" target="_blank">久久激情视频</a>| <a href="http://hhhtalk.com" target="_blank">亚洲国产精品一区制服丝袜</a>| <a href="http://8946286.com" target="_blank">亚洲国产电影</a>| <a href="http://qqqtrip.com" target="_blank">欧美色另类天堂2015</a>| <a href="http://zyjxyx.com" target="_blank">亚洲免费人成在线视频观看</a>| <a href="http://969093.com" target="_blank">欧美在线不卡视频</a>| <a href="http://17vx.com" target="_blank">国内精品久久久久国产盗摄免费观看完整版</a>| <a href="http://www-87633.com" target="_blank">在线亚洲免费</a>| <a href="http://sihu121.com" target="_blank">久久国产加勒比精品无码</a>| <a href="http://www134rr.com" target="_blank">在线观看亚洲视频</a>| <a href="http://huxiu123.com" target="_blank">欧美极品一区</a>| <a href="http://hicao32.com" target="_blank">欧美一区二区视频在线</a>| <a href="http://ategpu.com" target="_blank">欧美激情一区二区三区蜜桃视频</a>| <a href="http://wzsl8.com" target="_blank">91久久精品国产91性色tv</a>| <a href="http://3333347.com" target="_blank">欧美日韩国产在线</a>| <a href="http://hbdxzx.com" target="_blank">久久中文字幕一区</a>| <a href="http://snis675.com" target="_blank">亚洲精品麻豆</a>| <a href="http://91pinping.com" target="_blank">麻豆精品一区二区av白丝在线</a>| <a href="http://choaoxing.com" target="_blank">亚洲日产国产精品</a>| <a href="http://www11108b.com" target="_blank">国产日韩欧美麻豆</a>| <a href="http://828121.com" target="_blank">欧美日本国产</a>| <a href="http://551753.com" target="_blank">麻豆国产va免费精品高清在线</a>| <a href="http://7555hh.com" target="_blank">欧美黄色小视频</a>| <a href="http://www308eee.com" target="_blank">久久久久久久久久久久久久一区</a>| <a href="http://aqdav037.com" target="_blank">99视频日韩</a>| <a href="http://3233328.com" target="_blank">136国产福利精品导航网址</a>| <a href="http://55kam.com" target="_blank">国产精品一区二区女厕厕</a>| <a href="http://785448.com" target="_blank">欧美xxxx在线观看</a>| <a href="http://2220004.com" target="_blank">欧美一二三视频</a>| <a href="http://987328.com" target="_blank">亚洲一区在线视频</a>| <a href="http://wewe520.com" target="_blank">亚洲精品国产品国语在线app</a>| <a href="http://428820.com" target="_blank">蜜桃av一区</a>| <a href="http://k68c.com" target="_blank">欧美黑人一区二区三区</a>| <a href="http://www44448.com" target="_blank">久久综合九色综合欧美就去吻</a>| <a href="http://www-136445.com" target="_blank">亚洲一级影院</a>| <a href="http://155fck.com" target="_blank">欧美怡红院视频</a>| <a href="http://xingzhiyin85.com" target="_blank">久久久久久9999</a>| <a href="http://my6557.com" target="_blank">国产午夜精品一区理论片飘花 </a>| <a href="http://126film.com" target="_blank">久久先锋资源</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>