Showing posts with label many. Show all posts
Showing posts with label many. Show all posts

Friday, December 30, 2016

UVa 10926 How many dependencies

UVa 10926 How many dependencies



#include <cstdio>
#include <iostream>

using namespace std;

#define init(n) { for (int i=0 ; i<=n ; i++) { visit[i] = false; for (int j=0 ; j<=n ; j++) adj[i][j] = adj[j][i] = false; } }

int n, dep[200], root[200], adj[200][200];
bool visit[200];

int dfs_visit(int s, int src) {

root[s] = src;
dep[s] = 0;
for (int i=1 ; i<=n ; i++) {
if (!visit[i] && adj[s][i]) {
visit[i] = true;
dep[s] += (dfs_visit(i,src)+1);
}
}
return dep[s];
}

void dfs() {

for (int i=1 ; i<=n ; i++) {
for (int j=0 ; j<=n ; j++) visit[j] = false;
dfs_visit(i,i);
}

}

int main( void ) {

int t, x, maxdepi, maxdep;

while (scanf("%d",&n)==1 && n) {

init(n);

for (int i=1 ; i<=n ; i++) {
scanf("%d",&t);
for (int j=0 ; j<t ; j++) {
scanf("%d",&x);
adj[i][x] = true;
}
}


dfs();

maxdep = -1000;

for (int i=1 ; i<=n ; i++) {


if (dep[i]>maxdep) {
maxdep = dep[i];
maxdepi = i;

}
}

printf("%d ",maxdepi);

}


return 0;
}



Go to link download

Read more »

Thursday, December 22, 2016

Leakage many photos of HTC One Max the software supports finger sensor with version 2 SIM

Leakage many photos of HTC One Max the software supports finger sensor with version 2 SIM


Eprice page recently to post more pictures of the HTC One Max, the big screen version (maybe 5.9 ") HTC One. Few hours ago we heard that this product will be equipped with a fingerprint sensor or the fingers touch the back of the machine, and now Eprice confirm this feature is completely true. they
Read more »

Go to link download

Read more »

Saturday, November 12, 2016

How Many Calories Do i Burn Walking

How Many Calories Do i Burn Walking


Who says that running is the only way to lose weight? Can’t find the time to run? Why not walk?

Walking still is a form of exercise that will allow you to lose weight. Depending on the person and the amount of energy you use while walking, will depend on the amount of calories you will burn.

A general rule is that for every mile a person who weighs 160 pounds walks, they lose 100 calories. That’s not a lot of calories but it is losing weight with not a lot of effort.

How Many Calories Do I Burn Walking

How Many Calories Do i Burn Walking??
- Even though walking to lose weight is not a preferred method, it is better than no activity at all. You’d have to walk a long way to see any major changes. But say you’ve had too much to eat and want to burn off some calories, then walking is a good way to achieve that.

If you live within a few miles of where you work, then you could walk to work instead of driving. Or instead of parking your vehicle right next the entrance, park a few blocks down and walk to your destination.

Walking with a group is also beneficial to all you walkers out there. Research shows that you can walk a further distance if you have people to walk with. People who walk in groups can verify that. Anytime you see “mall walkers” they’re talking and walking. But it seems that process last for hours! So not only are you enjoying catching up with friends, you’re also burning calories.

Walking can be therapeutic to the soul. Being able to enjoy nice weather and getting in tune with nature and your thoughts can go a long way with stress and overall happiness. If you haven’t taken a walk lately I encourage you to do so. It may be just what the doctor ordered.

How Many Calories Do I Burn Walking-


Remember: Walking is better than sitting at home doing nothing about your health. Burning some calories is better than burn NO calories.

So the next time you think about it, take a walk! Park down the street and walk to your favorite hangout. Or find a group of friends to walk with you. Have fun with it. Enjoy the fresh air and enjoy the company of others around you! It may be just what you need to point you in the right direction.

Go to link download

Read more »

Thursday, November 3, 2016

Had Windows 10 Mobile no need for WP 8 1 fixes many bugs

Had Windows 10 Mobile no need for WP 8 1 fixes many bugs


     True to rumors, today Microsoft has officially released Windows 10 Mobile builds 10149. Notably, it is you can update straight from 10080 or 10136 to build the new version without having to flash again opposite WP 8.1 . Project Spartan browser has renamed Edge, the address bar is being moved downwards and have more options in the form of desktop web page. Note that bookmarks, cookies or browsing history will be synchronized from the Spartan to the Edge, you must reset it manually. Live Tile phenomena cells outside dimmed the Start screen are overcome, many icons and menus have been changed. Microsoft also promised that Windows 10 10 149 Mobile will build smoother, faster.

REALLY IMPORTANT:

  • After the upgrade is completed, the lock screen on your machine may be stiff for about 10 minutes. In essence, not exactly stiff, moving machine data (migrating) from the old to build the new build there but notice on the screen has not been added to the Microsoft operating system. Therefore, please be patient to wait the machine complete update of all, when part time and date have shown that you can unlock the phone for use. If you are impatient and restart the machine, it will have a lot of problems later.
  • If you upgraded from build up and error 10080 80,091,007, wait a minute. Microsoft will soon overcome this problem.

Some other changes in the Windows 10 build 10 149 Mobile:

  • Cortanas Notebook feature is excellent, combining with each page Profile and Settings
  • Quick settings area of ??Action Center more quickly toggle flash
  • The new Photos app has been brought up Windows Store Beta to more easily update later, it was improved in terms of performance, stability, support play animated GIF images (on the machine with 1GB RAM from becoming). Album area also shows additional photos stored on the computer when you browse the web, screen shots, and camera roll
  • Backing up photos from your camera will now be managed from OneDrive app, no longer through the Photos app as in WP 8.1

The problem has been fixed in build 10 149:
  • Error can not use the feature to block messages, the call was correct
  • Fixed a bug with no current SMS notification
  • Corrected some issues that can not or hardly app installed by Store Beta
  • Error correction can not hide navigation bar

Some problems still exist:

  • Insider Hub app is temporarily removed in these builds, they will be added in later builds
  • Sometimes the keyboard to enter a PIN will not work when the unlock machine. How to overcome it will be pulled down Action Center, select a specific notification to call up the PIN keypad
  • There is a rather rare case, its doubtful it will continuously enter the PIN to unlock your computer. If you are like that, let alone machine untouched for about 1-2 hours.
  • If you have an account login to Gmail, Messaging applications may be having problems sending and receiving messages. Just reboot is complete and the company is overcoming it
  • Some applications may display incorrect color menu.
Source: Microsoft

Go to link download

Read more »