[公开]西南四环路大修及环境提升-道路照明设施消隐改造工程(辅路)中标公告
中标评审分析官方公示数据
中标原因深度分析独家解读
215/MyAlgorithm
/LeetCode/0189 Rotate Array.cpp
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
class Solution {
public:
void rotate(vector<int>& nums, int k) {
int n = nums.size();
k = k % n;
reverse(nums.begin(), nums.end());
reverse(nums.begin(), nums.begin() + k);
reverse(nums.begin() + k, nums.end());
}
};
// 滑动窗口法
class Solution1 {
public:
void rotate(vector<int>& nums, int k) {
int n = nums.size();
k = k % n;
vector<int> tmp(nums.begin() + n - k, nums.end());
tmp.insert(tmp.end(), nums.begin(), nums.begin() + n - k);
nums = tmp;
}
};
int main() {
vector<int> nums = {1, 2, 3, 4, 5, 6, 7};
int k = 3;
Solution1 s1;
s1.rotate(nums, k);
for (auto num : nums) {
cout << num << " ";
}
return 0;
}
/LeetCode/0459 Repeated Substring Pattern.cpp
#include <iostream>
#include <string>
#include <vector>
using namespace std;
class Solution {
public:
string longestPalindrome(string s) {
int n = s.size();
vector<vector<int>> dp(n, vector<int>(n, 0));
int left = 0, right = 0;
for (int i = n - 1; i >= 0; i--) {
for (int j = i; j < n; j++) {
if (s[i] == s[j] && (j - i <= 1 || dp[i + 1][j - 1])) {
dp[i][j] = 1;
if (j - i + 1 > right - left + 1) {
left = i;
right = j;
}
}
}
}
return s.substr(left, right - left + 1);
}
};
int main() {
string s = "babad";
Solution s1;
cout << s1.longestPalindrome(s) << endl;
return 0;
}
/LeetCode/0083 Remove Duplicates from Sorted List.cpp
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
class Solution {
public:
vector<int> nextGreaterElements(vector<int>& nums) {
int n = nums.size();
vector<int> res(n, -1);
int top = 0;
queue<int> q;
for (int i = 0; i < n; i++) {
while (top > 0 && nums[i] > nums[q.front()]) {
res[q.front()] = nums[i];
q.pop();
top--;
}
q.push(i);
top++;
}
for (int i = 0; i < n; i++) {
while (top > 0 && nums[i] > nums[q.front()]) {
res[q.front()] = nums[i];
q.pop();
top--;
}
}
return res;
}
};
int main() {
vector<int> nums = {1, 2, 1};
Solution s1;
vector<int> res = s1.nextGreaterElements(nums);
for (auto num : res) {
cout << num << " ";
}
return 0;
}
/LeetCode/0147 Insertion Sort List.cpp
#include <iostream>
#include <vector>
#include <algorithm>
#include <assert.h>
using namespace std;
class Solution {
public:
int reversePairs(vector<int>& nums) {
int res = 0;
for (int i = 0; i < nums.size(); i++) {
for (int j = i + 1; j < nums.size(); j++) {
if (nums[i] > nums[j] * 2) {
res++;
}
}
}
return res;
}
};
int main() {
vector<int> nums = {1, 3, 2, 3, 1};
Solution s1;
cout << s1.reversePairs(nums) << endl;
return 0;
}
/LeetCode/0448 Find All Numbers Disappeared in an Array.cpp
#include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
vector<int> findDisappearedNumbers(vector<int>& nums) {
int n = nums.size();
vector<int> ans;
for (int i = 0; i < n; i++) {
while (nums[i] != i + 1) {
if (nums[nums[i] - 1] == nums[i]) break;
swap(nums[i], nums[nums[i] - 1]);
}
}
for (int i = 0; i < n; i++) {
if (nums[i] != i + 1) {
ans.push_back(i + 1);
}
}
return ans;
}
};
int main() {
vector<int> nums = {4,3,2,7,8,2,3,1};
Solution s1;
vector<int> ans = s1.findDisappearedNumbers(nums);
for (auto num : ans) {
cout << num << " ";
}
return 0;
}
/LeetCode/086 Partition List.cpp
#include <iostream>
#include <vector>
#include
一、项目编号:11000026210200173018-XM001
二、项目名称:西南四环路大修及环境提升-道路照明设施消隐改造工程(辅路)
三、中标(成交)信息
总中标成交金额:1196.980956 万元(人民币)
中标成交供应商名称、地址及中标成交金额:
中标成交供应商名称:北京创安利市政建设(集团)有限责任公司
中标成交供应商地址:北京市大兴区采育镇大街8号
中标金额:1196.980956万元
| 供应商名称 | 供应商地址 | 统一信用代码 | 中标金额 | 中标成交备注信息 |
|---|---|---|---|---|
| 北京创安利市政建设(集团)有限责任公司 | 北京市大兴区采育镇大街8号 | 91110000721492420F | 1196.980956 万元 | 评审总得分(综合评分法): 93.29 分 |
四、主要标的信息
| 供应商 | 商品名称 | 规格型号 | 数量 | 单价 | 总价 | 服务要求 |
|---|---|---|---|---|---|---|
| 北京创安利市政建设(集团)有限责任公司 | 详见附件 | 详见附件 | 1 | 1196.980956万元 | 1196.980956万元 | 详见附件 |
项目用途:西南四环路大修及环境提升-道路照明设施消隐改造(辅路)
简要技术要求:该项目随西南四环(南沙窝桥南至榴乡桥东)道路大修进程计划实施辅路范围内路灯设备消隐与提升,从而根治隐患,提升安全质量,涉及道路长度19.49公里。对辅路沿线照明不通路段进行管道拆除换新,对破损检修井进行原位复建,对老旧电缆进行更换;对辅路沿线路灯电源低压出线进行消隐改造,更换管线,优化出线方式。
合同履行日期:合同签订之日起至2027年12月31日(注:本次服务周期为计划时间,中标人应在满足服务要求情况下根据采购人的要求调整服务期限)。
五、评审专家(单一来源采购人员)名单:
夏至、李伟雄、姜辉、张安、张艳秋、刘欣宇、苏航
六、代理服务收费标准及金额:
本项目代理费总金额:8.490226万元(人民币)
本项目代理费收费标准:
计价格【2002】1980 号文件规定下浮 22%进行计算
七、公告期限
自本公告发布之日起1个工作日。
八、其它补充事宜
无
九、凡对本次公告内容提出询问,请按以下方式联系。
1.采购人信息
名 称:北京市城市照明管理中心
地址:北京市丰台区方庄路2号
联系方式:刘工,67900628
2.采购代理机构信息
名 称:北京树信工程项目管理有限公司
地 址:北京市房山区阎富路69号院20号楼-1至4层101一层11
联系方式:白铭宇,15611620615
3.项目联系方式
项目联系人:白铭宇
电 话: 15611620615
数据来源:查看官方原文 | 发布日期:2026-07-01