[公开]2026年财政资金临床学生宿舍租赁项目中标公告

中标公告 发布日期:2026-05-01 地区:北京 项目编号:11000026210200171180-XM001 预算金额:¥1834180 中标供应商:北京暖悦丰住房租赁有限公司 实施地点:及中标成交金额 数据采集:2026/07/19 22:00

📊中标评审分析官方公示数据

最终得分90.88 分
代理服务费2.167344万元
评审专家刘晖、王春华、孙超、肖玮、温庆祥

🤖中标原因深度分析独家解读

016/leetcode

/leetcode/1327.py
from collections import deque
from typing import List

class Solution:
def longestStrChain(self, words: List[str]) -> int:
def is_next(word, next_word):
if len(next_word) - len(word) != 1:
return False
i = 0
for j in range(len(next_word)):
if word[i] != next_word[j]:
i += 1
if i == len(word):
return True
if j == len(next_word) - 1:
return False
else:
i += 1
return True

words.sort(key = len)
dp = {}
for word in words:
dp[word] = 1
for prev_word in dp:
if is_next(prev_word, word):
dp[word] = max(dp[word], dp[prev_word] + 1)
return max(dp.values())

/leetcode/1393.py
from typing import List

class Solution:
def minimumMoves(self, grid: List[List[int]]) -> int:
m, n = len(grid), len(grid[0])
# for each grid, there are 4 directions
# 0 - up
# 1 - down
# 2 - left
# 3 - right
# note the grid is 0-based index
moves = [[1, 0], [1, 1], [0, 1], [-1, 0], [-1, -1], [0, -1], [1, -1], [-1, 1]]
# the possible position of the robot
pos = {(0, 0), (m - 1, n - 1)}
# record the steps from 0, 0 to each position
steps = {(0, 0): 0}
# record the shortest steps to 0, 0
shortest_steps = float("inf")
while pos:
new_pos = set()
for x, y in pos:
for dx, dy in moves:
nx = x + dx
ny = y + dy
# the position is out of bound
if nx < 0 or nx >= m or ny < 0 or ny >= n:
continue
# the position is in the grid but is occupied
if grid[nx][ny] == 1:
continue
# the position is free
if (nx, ny) in steps:
new_steps = steps[(x, y)] + 1
if nx == m - 1 and ny == n - 1:
shortest_steps = min(shortest_steps, new_steps)
steps[(nx, ny)] = new_steps
new_pos.add((nx, ny))
pos = new_pos
return shortest_steps if shortest_steps != float("inf") else -1

/leetcode/1337.py
from typing import List

class Solution:
def findComplement(self, num: int) -> int:
num = bin(num)
num = num[2:]
num = "".join("1" if i == "0" else "0" for i in num)
return int(num, 2)

/leetcode/1369.py
from typing import List

class Solution:
def generateParenthesis(self, n: int) -> List[str]:
res = []
def backtrack(s, left, right):
if len(s) == 2 * n:
res.append(s)
return
if left < n:
backtrack(s + "(", left + 1, right)
if right < left:
backtrack(s + ")", left, right + 1)
backtrack("", 0, 0)
return res

/leetcode/1305.py
from typing import List

class Solution:
def findLucky(self, arr: List[int]) -> int:
res = -1
arr.sort()
for i in range(len(arr)):
if i == arr[i] - 1:
if arr[i] > res:
res = arr[i]
return res

/leetcode/1308.py
from typing import List

class Solution:
def findDuplicate(self, nums: List[int]) -> int:
slow = nums[0]
fast = nums[0]
while True:
slow = nums[slow]
fast = nums[nums[fast]]
if slow == fast:
break
slow = nums[0]
while slow != fast:
slow = nums[slow]
fast = nums[fast]
return slow

/leetcode/1329.py
from typing import List

class Solution:
def countVowels(self, word: str) -> int:
res = 0
for i, c in enumerate(word):
if c in "aeiou":
res += i + 1
return res

/leetcode/1386.py
from typing import List

class Solution:
def maximumSum(self, nums: List[int]) -> int:
max1, max2 = -1, -1
for n in nums:
if n > max1:
max2 = max1
max1 = n
elif n > max2:
max2 = n
return max1 + max2

/leetcode/1264.py
from typing import List

class Solution:
def generate(self, numRows: int) -> List[List[int]]:
res = [[1]]

📖 阅读完整分析文章 →

一、项目编号:11000026210200171180-XM001

二、项目名称:2026年财政资金临床学生宿舍租赁项目

三、中标(成交)信息

总中标成交金额:183.418 万元(人民币)

中标成交供应商名称、地址及中标成交金额:

中标成交供应商名称:北京暖悦丰住房租赁有限公司

中标成交供应商地址:北京市丰台区银地西路15号院2号楼

中标金额:183.418万元

供应商名称 供应商地址 统一信用代码 中标金额 中标成交备注信息
北京暖悦丰住房租赁有限公司 北京市丰台区银地西路15号院2号楼 91110106MA01WAPE3B 183.418 万元 评审总得分(综合评分法): 90.88 分

四、主要标的信息

供应商 商品名称 规格型号 数量 单价 总价 服务要求
北京暖悦丰住房租赁有限公司 1 183.418万元 183.418万元 详见招标文件;

用途:自用;

简要技术要求:详见招标文件;

合同执行期、服务要求:1年。

五、评审专家(单一来源采购人员)名单:

刘晖、王春华、孙超、肖玮、温庆祥

六、代理服务收费标准及金额:

本项目代理费总金额:2.167344万元(人民币)

本项目代理费收费标准:

参照原国家发改委颁布的《招标代理服务收费管理暂行办法》(计价格[2002]1980号)

七、公告期限

自本公告发布之日起1个工作日。

八、其它补充事宜

中标供应商评审总得分:90.88分

招标公告发布日期:2026年4月27日

定标日期:2026年5月18日

九、凡对本次公告内容提出询问,请按以下方式联系。

1.采购人信息

名 称:首都医科大学附属北京佑安医院     

地址:北京市丰台区右安门外西头条8号        

联系方式:李老师,010-83997047      

2.采购代理机构信息

名 称:中技国际招标有限公司            

地 址:北京市丰台区西营街1号院通用时代中心C座9层            

联系方式:侯雅雯、孙薇,010-81168618            

3.项目联系方式

项目联系人:侯雅雯、孙薇

电 话:  010-81168618

中小企业声明函.jpg

2026年财政资金临床学生宿舍租赁项目-文件发售稿.pdf

321-中标公告.docx