This problem is from TopCoder SRM 556 - Div 2 - 250 ptr.Problem Statement |
||||||||||||||||||||||||||||||||||||||||||||||||||||
You just bought a very delicious chocolate bar from a local store.
This chocolate bar consists of N squares, numbered 0 through N-1.
All the squares are arranged in a single row. There is a letter
carved on each square. You are given a string letters. The
i-th character of letters denotes the letter carved on the
i-th square (both indices are 0-based). You want to share this delicious chocolate bar with your best friend. At first, you want to give him the whole bar, but then you remembered that your friend only likes a chocolate bar without repeated letters. Therefore, you want to remove zero or more squares from the beginning of the bar, and then zero or more squares from the end of the bar, in such way that the remaining bar will contain no repeated letters. Return the maximum possible length of the remaining chocolate bar that contains no repeated letters. |
|
Tuesday, October 23, 2012
Chocolate Bar
Monday, October 22, 2012
Great Fairy War
This problem is from TopCoder SRM 557 - Div 2 - 250 ptr.
Problem Statement |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
You are a wizard. You are facing N fairies, numbered 0 through N-1.
Your goal is to defeat all of them. You can only attack one fairy at
a time. Moreover, you must fight the fairies in order: you can only
attack fairy X+1 after you defeat fairy X. On the other hand, all
fairies that have not been defeated yet will attack you all the time. Each fairy has two characteristics: her damage per second (dps) and her amount of hit points. Your damage per second is 1. That is, you are able to reduce an opponent's hit points by 1 each second. In other words, if a fairy has H hit points, it takes you H seconds to defeat her. You are given two vector <int>s, each of length N: dps and hp. For each i, dps[i] is the damage per second of fairy i, and hp[i] is her initial amount of hit points. We assume that your number of hit points is sufficiently large to avoid defeat when fighting the fairies. Compute and return the total number of hit points you'll lose during the fight. In other words, return the total amount of damage the attacking fairies will deal. |
This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2003, TopCoder, Inc. All rights reserved My Solution :-
using System;
|
Tuesday, October 9, 2012
elementFromPoint DOM Method :-
elementFromPoint() is a method on "document"object in HTML.
It returns the HTML element at the given X & Y positions.
For Example :-
1) Position a html element say a textarea at (10,10) as follows :-
<textarea style="position:absolute;left:10px;top:10px">
Following script will show aleart as follows:-
var ele = document.elementFromPoint(11,11);
alert(ele)

It returns the HTML element at the given X & Y positions.
For Example :-
1) Position a html element say a textarea at (10,10) as follows :-
<textarea style="position:absolute;left:10px;top:10px">
Following script will show aleart as follows:-
var ele = document.elementFromPoint(11,11);
alert(ele)
Subscribe to:
Posts (Atom)