文章列表
uva11285 uvalive3983 Hackers' Crackdown
// AC
// A.myc
#include<iostream>
#include<cmath>
#include<stdio.h>
#include<string.h>
using namespace std;
const int maxn=100005;
struct dpnode{
int idx;
int val;
};
dpnode queue[maxn];
int head,tail;
int dp[maxn];
i ...