[公开]编外聘用人员支出经费中标公告
中标评审分析官方公示数据
中标原因深度分析独家解读
015/MyLeetCode
/22. Generate Parentheses/GenerateParentheses.java
package com.qwen2015.leetcode;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Stack;
/**
* Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring.
* <p>
* For "(()", the longest valid parentheses substring is "()", which has length = 2.
* <p>
* For ")()())", the longest valid parentheses substring is "()()", which has length = 4.
* <p>
* Example 1:
* <p>
* Input: "(()"
* Output: 2
* Explanation: The longest valid parentheses substring is "()".
* <p>
* Example 2:
* <p>
* Input: ")()())"
* Output: 4
* Explanation: The longest valid parentheses substring is "()()".
* <p>
* Example 3:
* <p>
* Input: ""
* Output: 0
* Explanation: The longest valid parentheses substring is "".
* <p>
* Note:
* <p>
* s consists of parentheses only.
*
* @author Qwen
* @version 1.0
* @date 2019/8/9 16:57
*/
public class LongestValidParentheses {
/**
* 使用栈
*
* @param s
* @return
*/
public int longestValidParentheses(String s) {
// 使用栈存储字符的下标
Stack<Integer> stack = new Stack<>();
stack.push(-1);
int length = s.length();
int max = 0;
for (int i = 0; i < length; i++) {
if (s.charAt(i) == '(') {
stack.push(i);
} else {
// 如果栈顶元素为'(',则弹出,否则不弹出
if (!stack.isEmpty() && stack.peek() != -1) {
stack.pop();
if (stack.isEmpty()) {
stack.push(i);
} else {
max = Math.max(max, i - stack.peek());
}
} else {
stack.push(i);
}
}
}
return max;
}
/**
* 使用队列
*
* @param s
* @return
*/
public int longestValidParentheses1(String s) {
int length = s.length();
if (length == 0) {
return 0;
}
Queue<Integer> queue = new LinkedList<>();
queue.offer(0);
int max = 0;
for (int i = 1; i < length; i++) {
if (s.charAt(i) == ')') {
int top = queue.peek();
if (top != -1 && s.charAt(top - 1) == '(') {
queue.poll();
queue.offer(i);
max = Math.max(max, i - queue.peek() + 1);
} else {
queue.offer(i);
}
}
}
return max;
}
}
/28. Implement strStr()/ImplementStrStr.java
package com.qwen2015.leetcode;
import java.util.HashMap;
import java.util.Map;
/**
* Implement strStr()
* <p>
* Implement 'strStr()'.
* <p>
* Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
* <p>
* Example 1:
* <p>
* Input: haystack = "hello", needle = "ll"
* Output: 2
* <p>
* Example 2:
* <p>
* Input: haystack = "aaaaa", needle = "aaa"
* Output: 0
* <p>
* Note:
* <p>
* haystack and needle consist of only lower-case letters.
* needle is a non-empty string.
* <p>
* Follow up:
* <p>
* If you have figured out the O(n) solution, try coding another solution using the divide and conquer approach, which is more subtle.
*
* @author Qwen
* @version 1.0
* @date 2019/8/10 14:21
*/
public class ImplementStrStr {
public int strStr(String haystack, String needle) {
if (haystack == null || needle == null) {
return -1;
}
if (haystack.length() == 0) {
return 0;
}
return indexOf(haystack, needle);
}
private int indexOf(String haystack, String needle) {
if (haystack == null || needle == null || haystack.length() == 0 || needle.length() == 0) {
return -1;
}
int hLen = haystack.length();
int nLen = needle.length();
if (nLen > hLen) {
return -1;
}
int j = 0;
for (int i = 0; i < hLen - nLen + 1; i++) {
j = i;
while (j < hLen && needle.charAt(j) == haystack.charAt(i)) {
j++;
i++;
}
if (j == hLen) {
return i - j;
}
}
return -1;
}
public static void main(String[] args) {
String haystack = "hello";
String needle = "ll";
int index = new ImplementStrStr().strStr(haystack, needle);
System.out.println(index);
一、项目编号:11000026210200177149-XM001
二、项目名称:编外聘用人员支出经费
三、中标(成交)信息
总中标成交金额:3938.5152 万元(人民币)
中标成交供应商名称、地址及中标成交金额:
中标成交供应商名称:北京五湖四海人力资源有限公司
中标成交供应商地址:北京市朝阳区东土城路14号11层1101内03-07-15房间
中标金额:3938.5152万元
| 供应商名称 | 供应商地址 | 统一信用代码 | 中标金额 | 中标成交备注信息 |
|---|---|---|---|---|
| 北京五湖四海人力资源有限公司 | 北京市朝阳区东土城路14号11层1101内03-07-15房间 | 911101017475032205 | 3938.5152 万元 | 评审总得分(综合评分法): 86.57 分 |
四、主要标的信息
| 供应商 | 商品名称 | 规格型号 | 数量 | 单价 | 总价 | 服务要求 |
|---|---|---|---|---|---|---|
| 北京五湖四海人力资源有限公司 | 1 | 3938.5152万元 | 3938.5152万元 | 配合采购人负责如下工作事项:(1)劳动合同管理;(2)派遣员工入离职管理;(3)社会保险、住房公积金代缴及管理服务;(4)派遣员工人事关系管理服务;(5)工资发放管理服务;(6)人事劳动事务咨询服务;(7)入职及员工培训;(8)员工沟通及反馈;(9)法律顾问;(10)健康保证;(11)续签或终止;(12)其他工作配合管理。 |
服务范围:为采购人提供新一年度的劳务派遣服务。
服务要求:配合采购人负责如下工作事项:(1)劳动合同管理;(2)派遣员工入离职管理;(3)社会保险、住房公积金代缴及管理服务;(4)派遣员工人事关系管理服务;(5)工资发放管理服务;(6)人事劳动事务咨询服务;(7)入职及员工培训;(8)员工沟通及反馈;(9)法律顾问;(10)健康保证;(11)续签或终止;(12)其他工作配合管理。
服务时间:一年
服务标准:合格,满足采购人采购的服务需要。
五、评审专家(单一来源采购人员)名单:
潘薇、郭建真、骆秀、贺冗、赵莉萍、宋璇、原媛
六、代理服务收费标准及金额:
本项目代理费总金额:0.5万元(人民币)
本项目代理费收费标准:
按招标代理合同与招标文件的相关规定
七、公告期限
自本公告发布之日起1个工作日。
八、其它补充事宜
本公告在北京市政府采购网(http://www.ccgp-beijing.gov.cn/)和中国政府采购网(http://www.ccgp.gov.cn)发布,其他媒介转发无效
九、凡对本次公告内容提出询问,请按以下方式联系。
1.采购人信息
名 称:中共北京市委网络安全和信息化委员会办公室(本级)
地址:北京市通州区留庄路4号院1号楼
联系方式:原媛,010-55520161
2.采购代理机构信息
名 称:北京国泰建中管理咨询有限公司
地 址:北京市海淀区成府路270号中科科仪大院6号楼3层
联系方式:杜子一、武珊珊、张敏、杜善君,010-68001293
3.项目联系方式
项目联系人:杜子一、武珊珊、张敏、杜善君
电 话: 010-68001293
数据来源:查看官方原文 | 发布日期:2026-07-01