解题思路:
栈
class Solution {public int longestValidParentheses(String s) {int max 0;// 也可以使用 Stack<Integer> stacknew Stack<>();但Stack是遗留类,不推荐Deque<Integer> stack new LinkedList<>();stack.push(…
毫无难度啊。
A - Trick Taking 硬模拟就行。
#include<bits/stdc.h>
using namespace std;
const int maxn 2e5 10;
int n, t, c[maxn], r[maxn];
signed main(){cin >> n >> t;bool flag 0;for(int i 1; i < n; i) {cin >> c[i];if(c[i] t…