Treasure ExplorationTime Limit: 6000MSMemory Limit: 65536KTotal Submissions: 7035Accepted: 2860DescriptionHave you ever read any book about treasure e...
分类:
其他好文 时间:
2015-04-04 21:02:48
阅读次数:
197
7143. Treasure
Constraints
Time Limit: 1 secs, Memory Limit: 256 MB
Description
One day, MXWai found a treasure map. The map was
divided into 2^n * 2^n grids. The top left corner w...
分类:
其他好文 时间:
2015-03-30 09:18:14
阅读次数:
110
简单枚举+巧妙躲避大枚举量
#include
using namespace std;
long long n,s1,v1,s2,v2,total;
int main() {
ios::sync_with_stdio(false);
long long T,maxn=0;
cin>>T;
while(T--) {
cin>>n>>s1>>v1>>s...
分类:
其他好文 时间:
2015-03-15 18:27:31
阅读次数:
174
Woo-hoo!Now you knowwhat is happening with your app’s memory usage when you see one of those OOM exception. But, you don’t know where to find the sour...
分类:
移动开发 时间:
2015-03-09 12:47:03
阅读次数:
240
H - Treasure Hunt IV Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%lld & %lluDescription Alice is exploring the wonderland, suddenly she f.....
分类:
其他好文 时间:
2015-03-07 15:22:29
阅读次数:
125
ACM是每天要做的事,每一个AC都是一个小小的欣慰。...
分类:
其他好文 时间:
2015-02-04 16:38:04
阅读次数:
113
source: https://www.trustedsec.com/january-2015/account-hunting-invoke-tokenmanipulation/
I’ve been searching quite a while now for the best way to search for domain admin tokens, once admin righ...
分类:
其他好文 时间:
2015-02-02 19:55:40
阅读次数:
283
Description Your boss once had got many copies of a treasure map. Unfortunately, all the copies are now broken to many rectangular pieces, and what...
分类:
其他好文 时间:
2015-01-31 14:13:38
阅读次数:
154
A.Mr. Kitayuta, the Treasure Hunter 很显然的一个DP,30000的数据导致使用map+set会超时。题解给了一个非常实用的做法,由于每个点有不超过250种状态,并且这些状态都是以包含d连续的一段数字,那么可以以对d的偏移量作为状态。这算是很常见的一个优化了。#i....
分类:
其他好文 时间:
2015-01-24 15:48:14
阅读次数:
148