[公开]双高计划智慧健康养老服务与管理专业群建设-专业群标准中心建设项目中标公告

中标公告 发布日期:2026-07-01 地区:北京 项目编号:11000026210200173907-XM001 预算金额:¥650000 中标供应商:北京孝为先信息技术有限公司 实施地点:及中标成交金额 数据采集:2026/07/19 20:58

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

代理服务费0.975万元
评审专家冀燕丽、王伟、孙栋、王君、闫亚南

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

33/My-Algorithm

/LeetCode/0242-valid-anagram.cpp
#include <string>
#include <unordered_map>
#include <unordered_set>
using namespace std;

class Solution {
public:
bool isAnagram(string s, string t) {
if (s.length() != t.length()) {
return false;
}

unordered_map<char, int> m;
for (auto &c : s) {
++m[c];
}

for (auto &c : t) {
if (--m[c] < 0) {
return false;
}
}

return true;
}
};

int main() {
Solution s;
cout << s.isAnagram("anagram", "nagaram") << endl;
return 0;
}

/LeetCode/0172-factorial-trailing-zeroes.cpp
#include <vector>
#include <string>
#include <unordered_map>
using namespace std;

class Solution {
public:
int firstUniqChar(string s) {
unordered_map<char, int> m;
for (auto &c : s) {
++m[c];
}

for (int i = 0; i < s.length(); ++i) {
if (m[s[i]] == 1) {
return i;
}
}

return -1;
}
};

int main() {
Solution s;
cout << s.firstUniqChar("loveleetcode") << endl;
return 0;
}

/LeetCode/0169-majority-element.cpp
#include <vector>
#include <string>
#include <unordered_map>
using namespace std;

class Solution {
public:
vector<int> twoSum(vector<int>& nums, int target) {
vector<int> res;

for (int i = 0; i < nums.size(); ++i) {
for (int j = i + 1; j < nums.size(); ++j) {
if (nums[i] + nums[j] == target) {
res.push_back(i);
res.push_back(j);
return res;
}
}
}

return res;
}
};

int main() {
Solution s;
vector<int> v = {2, 7, 11, 15};
vector<int> res = s.twoSum(v, 9);
cout << res[0] << " " << res[1] << endl;
return 0;
}

/LeetCode/0189-rank-relevance.cpp
#include <vector>
#include <string>
#include <unordered_map>
using namespace std;

class Solution {
public:
vector<string> uncommonFromSentences(string s1, string s2) {
unordered_map<string, int> m;
for (auto &c : s1) {
++m[c];
}

for (auto &c : s2) {
++m[c];
}

vector<string> res;
for (auto &p : m) {
if (p.second == 1) {
res.push_back(p.first);
}
}

return res;
}
};

int main() {
Solution s;
vector<string> res = s.uncommonFromSentences("leetcode is cool", "is cool is");
for (auto &c : res) {
cout << c << " ";
}
cout << endl;
return 0;
}

/LeetCode/0250-count-of-matching-pairs.cpp
#include <vector>
#include <string>
#include <unordered_map>
using namespace std;

class Solution {
public:
int longestValidParentheses(string s) {
int max_length = 0;
unordered_map<char, int> m;
m['('] = 1;
m[')'] = -1;
int sum = 0;
for (int i = 0; i < s.length(); ++i) {
sum += m[s[i]];
max_length = max(max_length, sum == 0 ? i + 1 : i - max_length);
}

return max_length;
}
};

int main() {
Solution s;
cout << s.longestValidParentheses("(()") << endl;
return 0;
}

/LeetCode/0347-round-robin.cpp
#include <vector>
#include <string>
#include <unordered_map>
using namespace std;

class Solution {
public:
int removeElement(vector<int>& nums, int val) {
int n = nums.size();

for (int i = 0; i < n;) {
if (nums[i] == val) {
nums.erase(nums.begin() + i);
--n;
} else {
++i;
}
}

return n;
}
};

int main() {
Solution s;
vector<int> v = {3, 2, 2, 3};
cout << s.removeElement(v, 3) << endl;
for (auto &c : v) {
cout << c << " ";
}
cout << endl;
return 0;
}

/LeetCode/0448-find-all-numbers-disappeared-in-an-array.cpp
#include <vector>
#include <unordered_map>
using namespace std;

class Solution {
public:
vector<int> findErrorNums(vector<int>& nums) {
unordered_map<int, int> m;
for (auto &c : nums) {
++m[c];
}

vector<int> res;
for (auto &p : m) {
if (p.second == 2) {
res.push_back(p.first);
}
}

for (int i =

📖 阅读完整分析文章 →

一、项目编号:11000026210200173907-XM001

二、项目名称:双高计划智慧健康养老服务与管理专业群建设-专业群标准中心建设项目

三、中标(成交)信息

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

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

中标成交供应商名称:北京孝为先信息技术有限公司

中标成交供应商地址:北京市海淀区苏州街33号10层1012-1

中标金额:65万元

供应商名称 供应商地址 统一信用代码 中标金额 中标成交备注信息
北京孝为先信息技术有限公司 北京市海淀区苏州街33号10层1012-1 91110108563617522D 65 万元 评审总得分(综合评分法): 86.2 分

四、主要标的信息

供应商 商品名称 规格型号 数量 单价 总价 服务要求
北京孝为先信息技术有限公司 双高计划智慧健康养老服务与管理专业群建设-专业群标准中心建设项目 / 1 65万元 65万元 详见招标文件

项目用途:用于双高计划智慧健康养老服务与管理专业群建设-专业群标准中心建设项目

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

冀燕丽、王伟、孙栋、王君、闫亚南

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

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

本项目代理费收费标准:

按《招标代理服务收费管理暂行办法》(计价格[2002]1980号)。

七、公告期限

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

八、其它补充事宜

代理服务收费汇款账户信息如下:

开户名称:北京国际工程咨询有限公司

开户银行:交通银行北京右安门支行

账号:81100602610130021000001

具体内容详见附件下载

BIECC-26CG90284

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

1.采购人信息

名 称:北京劳动保障职业学院     

地址:北京市朝阳区惠新东街5号        

联系方式:白老师,010-80114089      

2.采购代理机构信息

名 称:北京国际工程咨询有限公司            

地 址:北京市西城区广安门外大街甲275号            

联系方式:包红月/仇凯彬/李嘉鹏,010-62051636/010-62055093            

3.项目联系方式

项目联系人:包红月/仇凯彬/李嘉鹏

电 话:  010-62051636/010-62055093

0618-招标文件(最终版)-双高计划智慧健康养老服务与管理专业群建设-专业群标准中心建设项目.pdf

0714-中标公告-双高计划智慧健康养老服务与管理专业群建设-专业群标准中心建设项目.docx