[磋商]境内重点区域招商推介系列活动-生物医药和集成电路产业靶向招商活动采购项目成交公告
中标评审分析官方公示数据
中标原因深度分析独家解读
56/leetcode
/75/75-01矩阵.py
# Given a binary matrix A, we want to flip the image horizontally, then invert it, and return the resulting image.
# To flip an image horizontally means that each row of the image will be reversed.
# For example, flipping [1, 1, 0] horizontally results in [0, 1, 1].
# To invert an image means that each 0 is replaced by 1, and each 1 is replaced by 0.
# For example, inverting [0, 1, 1] results in [1, 0, 0].
# Example 1:
# Input: [[1,1,0],[1,0,1],[0,0,0]]
# Output: [[1,0,0],[0,1,0],[1,1,1]]
# Explanation: First reverse each row, then invert it.
# Example 2:
# Input: [[1,1,0,0],[1,0,0,1],[0,1,1,1],[1,0,1,0]]
# Output: [[1,1,0,0],[0,1,1,0],[0,0,0,1],[1,0,1,0]]
# Explanation: First reverse each row, then invert it.
# Note:
# 1 <= A.length = A[0].length <= 20
# 0 <= A[i][j] <= 1
class Solution(object):
def flipAndInvertImage(self, A):
"""
:type A: List[List[int]]
:rtype: List[List[int]]
"""
for i in range(len(A)):
A[i] = A[i][::-1]
for j in range(len(A[0])):
if A[i][j] == 0:
A[i][j] = 1
else:
A[i][j] = 0
return A
/113/113_pathSum3.py
# Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level).
# For example:
# Given binary tree [3,9,20,null,null,15,7],
# 3
# / \
# 9 20
# / \
# 15 7
# return its level order traversal as:
# [
# [3],
# [9,20],
# [15,7]
# ]
# Definition for a binary tree node.
# class TreeNode(object):
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution(object):
def levelOrder(self, root):
"""
:type root: TreeNode
:rtype: List[List[int]]
"""
res = []
if not root:
return res
queue = [root]
while queue:
cur = []
next = []
for node in queue:
cur.append(node.val)
if node.left:
next.append(node.left)
if node.right:
next.append(node.right)
res.append(cur)
queue = next
return res
/97/97-interleavingString.py
# Given two strings s and t, determine if they are isomorphic.
# Two strings are isomorphic if the characters in s can be replaced to get t.
# All occurrences of a character must be replaced with another character while preserving the order of characters. No two characters may map to the same character but a character may map to itself.
# For example,
# Given "egg", "add", return true.
# Given "foo", "bar", return false.
# Given "paper", "title", return true.
# Note:
# You may assume both s and t have the same length.
class Solution(object):
def isIsomorphic(self, s, t):
"""
:type s: str
:type t: str
:rtype: bool
"""
s_dict = {}
t_dict = {}
for i in range(len(s)):
if s[i] in s_dict and s_dict[s[i]] != t[i]:
return False
if t[i] in t_dict and t_dict[t[i]] != s[i]:
return False
s_dict[s[i]] = t[i]
t_dict[t[i]] = s[i]
return True
/115/115_distinctSubsequences.py
# Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring.
# Example 1:
# Input: "babad"
# Output: "bab"
# Note: "aba" is also a valid answer.
# Example 2:
# Input: "cbbd"
# Output: "bb"
# Example 3:
# Input: "a"
# Output: "a"
# Example 4:
# Input: "ac"
# Output: "a"
# Note:
# There is at least one palindromic substring in the string
# You cannot modify the input string.
class Solution(object):
def longestPalindrome(self, s):
"""
:type s: str
:rtype: str
"""
s_list = list(s)
if len(s) == 1:
return s
if len(s) == 2:
if s[0] ==
一、项目编号:11000026210200178513-XM001
二、项目名称:境内重点区域招商推介系列活动-生物医药和集成电路产业靶向招商活动采购项目
三、中标(成交)信息
总中标成交金额:6.7 万元(人民币)
中标成交供应商名称、地址及中标成交金额:
中标成交供应商名称:四川大成方略信息科技有限公司
中标成交供应商地址:成都高新区天府五街菁蓉汇4B栋6楼
中标金额:6.7万元
| 供应商名称 | 供应商地址 | 统一信用代码 | 中标金额 | 中标成交备注信息 |
|---|---|---|---|---|
| 四川大成方略信息科技有限公司 | 成都高新区天府五街菁蓉汇4B栋6楼 | 91510107MACBGJQ545 | 6.7 万元 | 评审总得分(综合评分法): 93.33 分 |
四、主要标的信息
| 供应商 | 商品名称 | 规格型号 | 数量 | 单价 | 总价 | 服务要求 |
|---|---|---|---|---|---|---|
| 四川大成方略信息科技有限公司 | 1 | 6.7万元 | 6.7万元 | 活动策划、参会企业邀请、会务组织、会场搭建、设备安装、会议劳务服务等。 |
自合同签订后至2026年12月31日。
五、评审专家(单一来源采购人员)名单:
骆冬梅、李源、吕腾飞
六、代理服务收费标准及金额:
本项目代理费总金额:0.15万元(人民币)
本项目代理费收费标准:
竞争性磋商文件规定
七、公告期限
自本公告发布之日起1个工作日。
八、其它补充事宜
无
九、凡对本次公告内容提出询问,请按以下方式联系。
1.采购人信息
名 称:北京市投资促进服务中心(本级)
地址:北京市丰台区西三环南路1号8层
联系方式:吕腾飞,89153668
2.采购代理机构信息
名 称:北京国际贸易有限公司
地 址:北京市朝阳区建国门外大街甲3号
联系方式:孙权,13810607099
3.项目联系方式
项目联系人:孙权
电 话: 13810607099
数据来源:查看官方原文 | 发布日期:2026-07-01