6159 The Moon of Valencia

Size: px
Start display at page:

Download "6159 The Moon of Valencia"

Transcription

1 6159 The Moon of Valencia It is well known that the Moon of Valencia is magical. Everyone talks about a mystery that happens at night. People remember what time they entered the first bar, what time arrived to the hotel and how happy they arrived, but nobody remembers the bars and pubs they visited. The Valencia hotels have hired you for developing an application that helps customers to remember. The application will inform customers with one of all the possible sequences of bars and pubs. Customers have to provide the following information: departure time and place, arrival time and place, and degree of satisfaction on arrival. The application uses a map with the location of each bar or pub. Each bar or pub produces a different degree of satisfaction when visited. But people gets angry when walks from one place to another, that s the reason why walking between different places reduces the degree of satisfaction. The reduction considered depends on the amount of minutes people needs to get one place from another one. If the amount of minutes is not an integer the remaining seconds should be considered a portion of a minute, i.e., 30 seconds imply 0.5 minutes. People walk at a speed of 4 km/h, can stay in a bar or pub the time they like, but for getting the satisfaction must remain at least 15 minutes. People can decide not to visit a bar or pub, i.e., they can use a path from the origin to the target and to enter in a subset of all the bars or pubs reachable with the path. Entering to the departure place is optional, like entering others places. The goal grade of satisfaction is computed up to the door of the target place, without entering it. So the grade of satisfaction of the target place (bar, pub or hotel) should not be computed. Input Input consists of several test cases. Each case begins with the map description, which is followed by the list of arrivals your application have to check. The description of a map begins with the word MAP in capital letters followed by two integer numbers, P and M, where P is the number of places and M is the number of paths connecting two places. (1 P 64). Places and paths are described one per line. Each place is described with two coordinates (real numbers represent kilometers), its grade of satisfaction (a real number), the ID and the name. The paths connecting two places are identified by the their identifiers. Each pair of places can only be connected by one path. Figure 1 shows the map corresponding to the first map in the example input case. It is guaranteed that no crossing paths exist. The list of arrivals to be processed begins after a line with the word ARRIVALS in uppercase. Each arrival is described in a single line, including departure time, departure place, arrival time, arrival place and the grade of satisfaction on arrival, a real number. Output The output for each case must begin with the word MAP in capital letters followed by anumber indicating the number of test case. The first test case is MAP 1, second is MAP 2, and so on. For each arrival proposed in the input it must appear a line in the output specifying a valid path found or the string Impossible! indicating that it is not possible to find a path from origin to target with the required grade of satisfaction. A path found will be valid if the absolute difference between the required grade of satisfaction and the obtained one is less than 0.1, and contains no loops, i.e. a place can t appear in the path found more than once.

2 ACM-ICPC Live Archive: 6159 The Moon of Valencia 2/5 Figure 1: Representation of the first map in the input example. Each path found must begin with the string PATH FOUND: in capital letters, followed by the obtained grade of satisfaction with three decimal digits and then the sequence of places from origin up to target. The ID of the unvisited places must appear preceded by the! sign. Noticeas the ID of the target place never is preceded by this sign. Hint: Set up your solution for running as fast as possible by using this example, it should be enough for all test cases. Sample Input MAP UPV Universitat Politecnica de Valencia SPV Contest hotel B01 The Object B02 Opera B03 New York

3 ACM-ICPC Live Archive: 6159 The Moon of Valencia 3/ B04 Blue Note B05 The Popes B06 Petrol B07 King of Kings B08 O Salati B09 The Snails B10 The Earth B11 Cafe Coffee B12 Vermouth house B13 Jamon Session B14 Let s go to eat B15 I m hungry B16 The Gecko B17 The Black Sheep UPV B01 B01 B02 B01 B03 B01 B16 B02 B03 B02 B11 B16 B08 B16 B14 B16 B03 B03 B04 B03 B11 B04 B11 B04 B16 B04 B05 B05 B14 B08 B09 B08 B15 B08 B14 B11 B06 B14 B15 B05 B06 B05 B16 B05 B10 B15 B09 B15 B10 B09 B12 B06 B10 B06 B17 B10 B07 B10 B17 B10 B12 B10 B14 B12 B15 B12 B07 B12 SPV B17 B07

4 ACM-ICPC Live Archive: 6159 The Moon of Valencia 4/5 B17 B13 B07 B13 B07 SPV B13 SPV ARRIVALS 23:00 UPV 03:00 SPV :00 UPV 03:00 SPV :00 UPV 03:00 SPV :00 UPV 03:00 SPV :00 UPV 03:00 SPV :00 UPV 03:00 SPV :00 UPV 03:00 SPV :00 UPV 03:00 SPV :00 UPV 03:00 SPV :00 UPV 03:00 SPV :00 UPV 03:00 SPV :00 UPV 03:00 SPV :00 UPV 03:00 SPV :00 UPV 03:00 SPV :00 B05 03:00 B :00 B05 03:00 B :00 B05 03:00 B :00 B05 03:00 B :00 B05 03:00 B :00 B05 03:00 B :00 B05 03:00 B :00 B05 03:00 B :00 B05 03:00 B MAP UPV Universitat Politecnica de Valencia SPV Hotel Silken Puerta de Valencia UPV SPV ARRIVALS 23:00 UPV 1:00 SPV :00 UPV 1:00 SPV 8.0 Sample Output MAP 1 PATH FOUND: UPV B01 B16 B04!B11 B06!B17!B13 SPV PATH FOUND: UPV B01 B16 B14 B08 B09!B12 SPV PATH FOUND: UPV B01 B16 B04!B11 B06!B10!B07 SPV PATH FOUND: UPV B01 B16 B05 B10!B17!B07 SPV PATH FOUND: UPV B01 B16 B04!B05!B14!B15!B10 B07 SPV PATH FOUND: UPV B01 B16 B08!B15 B12 B07 SPV PATH FOUND: UPV B01 B16 B05!B10 B12!B07 SPV PATH FOUND: UPV B01 B16 B14!B15 B08 B09!B12 SPV PATH FOUND: UPV B01 B16 B03!B04!B05!B06 B17!B13!B07 SPV PATH FOUND: UPV B01 B16 B05!B10 B17!B13!B07 SPV PATH FOUND: UPV B01 B16 B08!B09!B15 B12 SPV PATH FOUND: UPV B01 B16 B03!B04!B05 B10!B17!B07 SPV

5 ACM-ICPC Live Archive: 6159 The Moon of Valencia 5/5 PATH FOUND: UPV B01 B03!B16 B05!B10!B14 B15!B12 SPV PATH FOUND: UPV B01 B03!B16 B08!B09!B15 B12!B07 SPV PATH FOUND: B05 B16 B14!B08 B09!B15 B10 PATH FOUND: B05 B16 B08!B15 B10 PATH FOUND: !B05 B04!B03 B02!B01 B16!B08!B09!B15 B10 PATH FOUND: B05 B14 B08!B15!B09 B12 B10 PATH FOUND: 0.004!B05 B14 B08!B15 B09 B12 B10 PATH FOUND: B05!B14!B15 B12 B10 PATH FOUND: B05!B06!B17 B07 B12 B15!B14 B10 PATH FOUND: !B05 B06!B17 B07 B12 B15!B14 B10 PATH FOUND: !B05!B04!B16 B14!B15 B10 MAP 2 Impossible! Impossible!

GLUCOSE MONITORING. How. When

GLUCOSE MONITORING. How. When GLUCOSE MONITORING Why Self-monitoring of blood glucose is the best way to see how your body handles food, activity, diabetes medication (pills and/or insulin), stress and illness. You can also see what

More information

CHILDHOOD C 3 HANGE CARE TOOL: PROVIDER REPORT

CHILDHOOD C 3 HANGE CARE TOOL: PROVIDER REPORT Date: / / Patient s Project ID# For use as-needed in clinic visits A SURVEY TO LEARN ABOUT A PATIENT S NEEDS AND ABILITIES: Health care providers of children and adolescents aged 5 to 2 How is this patient

More information

Intro to Cognitive Neuroscience. Working memory

Intro to Cognitive Neuroscience. Working memory Intro to Cognitive Neuroscience Working memory 1 What is working memory? Brief, immediate memory for information we are currently processing. Closely related to attention: attending to something is often

More information

Margery E. Yuill Cancer Centre Patient Guide for Cancer Care

Margery E. Yuill Cancer Centre Patient Guide for Cancer Care Margery E. Yuill Cancer Centre Patient Guide for Cancer Care Medicine Hat Regional Hospital 666 5 Street SW Medicine Hat, Alberta T1A 4H6 Main Desk: 403-529-8817 Cancer Patient Education Table of Contents

More information

Measurement and meaningfulness in Decision Modeling

Measurement and meaningfulness in Decision Modeling Measurement and meaningfulness in Decision Modeling Brice Mayag University Paris Dauphine LAMSADE FRANCE Chapter 2 Brice Mayag (LAMSADE) Measurement theory and meaningfulness Chapter 2 1 / 47 Outline 1

More information

Central Alberta Cancer Centre Patient Guide to Cancer Care

Central Alberta Cancer Centre Patient Guide to Cancer Care Central Alberta Cancer Centre Patient Guide to Cancer Care Red Deer Regional Hospital 3942 50A Avenue Red Deer, Alberta T4N 6R2 Main Desk: 403-343-4526 Cancer Patient Education Last updated: 22-May-14

More information

Managing Difficult Conversations Increase Satisfaction / Decrease Stress. BMC, 2015

Managing Difficult Conversations Increase Satisfaction / Decrease Stress. BMC, 2015 Managing Difficult Conversations Increase Satisfaction / Decrease Stress Why Do We Avoid Difficult Conversations? We don t want to make matters worse We fear we ll be attacked back We don t want to be

More information

DRAFT Southwark Joint Mental Health and Wellbeing Strategy

DRAFT Southwark Joint Mental Health and Wellbeing Strategy DRAFT Southwark Joint Mental Health and Wellbeing Strategy 2017-2020 Vision for mental health and wellbeing We want to: Support everyone in Southwark to live healthy, happy and longer lives; Stop people

More information

Mendelian Genetics. Activity. Part I: Introduction. Instructions

Mendelian Genetics. Activity. Part I: Introduction. Instructions Activity Part I: Introduction Some of your traits are inherited and cannot be changed, while others can be influenced by the environment around you. There has been ongoing research in the causes of cancer.

More information

Living Well with Diabetes. Meeting 12. Welcome!

Living Well with Diabetes. Meeting 12. Welcome! 12-1 Welcome! Welcome back and congratulations! Today is a time to celebrate all of your accomplishments. For the past few months we have learned a great deal about managing diabetes. Today, we will talk

More information

Group Session 14. Breaking Bad Habits My Five Rules My Action Plan for the Week Food and Fitness Diary (FFD) New Leaf Module Handout Success Stories

Group Session 14. Breaking Bad Habits My Five Rules My Action Plan for the Week Food and Fitness Diary (FFD) New Leaf Module Handout Success Stories Group Session 14 at a Glance Key Behavioral Strategies Relapse prevention Problem solving Participant Behavioral Strategies Process Objectives & Session Content Handouts Resources Topics/Agenda (2 hours)

More information

Pharmacy Advisor Program. Specialized Health Support

Pharmacy Advisor Program. Specialized Health Support Pharmacy Advisor Program Specialized Health Support Contents Your Health and Your CVS Caremark Pharmacy Advisor Pharmacist...3 Keys to Your Health....4 Getting the Most from Your Medication...6 Feeling

More information

My Name is Fatima. Short story based on Welcome Parents. We Speak NYC Season 1

My Name is Fatima. Short story based on Welcome Parents. We Speak NYC Season 1 My Name is Fatima Short story based on Welcome Parents We Speak NYC Season 1 Watch Read Learn All We Speak NYC short stories and episodes are available on the website: www.nyc.gov/wespeaknyc Short Stories

More information

Coach on Call. Please give me a call if you have more questions about this or other topics.

Coach on Call. Please give me a call if you have more questions about this or other topics. Coach on Call It was great to talk with you. Thank you for your interest in. I hope you find this tip sheet helpful. Please give me a call if you have more questions about this or other topics. As your

More information

These questionnaires are used by psychology services to help us understand how people feel. One questionnaire measures how sad people feel.

These questionnaires are used by psychology services to help us understand how people feel. One questionnaire measures how sad people feel. ADAPTED PHQ-9 & GAD-7 QUESTIONNAIRES How to fill in these questionnaires: These questionnaires are used by psychology services to help us understand how people feel. One questionnaire measures how sad

More information

Family Weekender. What to expect when you volunteer

Family Weekender. What to expect when you volunteer Family Weekender What to expect when you volunteer Type 1 Events are a unique volunteering opportunity and we want to make your experience as rewarding as possible. Volunteering at one of our events isn

More information

MY SPORTFOLIO ISM PHYSICAL EDUCATION AND FITNESS TEACHER: BLOCK: GRADE:

MY SPORTFOLIO ISM PHYSICAL EDUCATION AND FITNESS TEACHER: BLOCK: GRADE: MY SPORTFOLIO ISM PHYSICAL EDUCATION AND FITNESS TEACHER: BLOCK: GRADE: WHAT IS HEALTHY ACTIVE LIVING? Before starting off on a journey, you need to know what your starting point is. This exercise will

More information

Quiz 4.1C AP Statistics Name:

Quiz 4.1C AP Statistics Name: Quiz 4.1C AP Statistics Name: 1. The school s newspaper has asked you to contact 100 of the approximately 1100 students at the school to gather information about student opinions regarding food at your

More information

@PAESPTA. PTA President s Corner. Mrs. Ginny O Malley, Assistant Principal and Mr. Ivy Wroton, Principal of Princess Anne Elementary School.

@PAESPTA. PTA President s Corner. Mrs. Ginny O Malley, Assistant Principal and Mr. Ivy Wroton, Principal of Princess Anne Elementary School. PTA President s Corner Dear Parents, My name is Kristin Maggio and I am the new 2017-2018 PAES PTA President. I hope you all had a refreshing summer and great start to our school year. The PTA Board has

More information

Limitations of 2-cond Designs

Limitations of 2-cond Designs Design Conditions & Variables Limitations of 2-group designs Kinds of Treatment & Control conditions Kinds of Causal Hypotheses Explicating Design Variables Kinds of IVs Identifying potential confounds

More information

What to Expect While Receiving Radiation Therapy for Cancers of the Skin

What to Expect While Receiving Radiation Therapy for Cancers of the Skin What to Expect While Receiving Radiation Therapy for Cancers of the Skin Princess Margaret Information for patients who are having radiation therapy for cancers of the skin Read this pamphlet to learn

More information

Global&Journal&of&Community&Psychology&Practice&

Global&Journal&of&Community&Psychology&Practice& Global&Journal&of&Community&Psychology&Practice& Volume 2, Issue 2 December 2011 Tearless Logic Model Ashlee D. Lien, Justin P. Greenleaf, Michael K. Lemke, Sharon M. Hakim, Nathan P. Swink, Rosemary Wright,

More information

GOALS FOR LEADERS SAMPLE SESSION OUTLINE

GOALS FOR LEADERS SAMPLE SESSION OUTLINE THOUGHTS 1 -- THOUGHTS AND YOUR MOOD Welcome new participants Review group rules GOALS FOR LEADERS Have participants and group introduce themselves Review the cognitive behavioral treatment model Introduce

More information

A Guide to Help You Reduce and Stop Using Tobacco

A Guide to Help You Reduce and Stop Using Tobacco Let s Talk Tobacco A Guide to Help You Reduce and Stop Using Tobacco Congratulations for taking this first step towards a healthier you! 1-866-710-QUIT (7848) albertaquits.ca It can be hard to stop using

More information

IMPRINT models of training: Update on RADAR modeling

IMPRINT models of training: Update on RADAR modeling IMPRINT models of training: Update on RADAR modeling MURI Annual Meeting September 12, 2008 Carolyn Buck-Gengler Department of Psychology, Institute of Cognitive Science, and Center for Research on Training

More information

Register Now!!! 13 th Kansas Disability Caucus August 13-14, 2015

Register Now!!! 13 th Kansas Disability Caucus August 13-14, 2015 Register Now!!! 13 th Kansas Disability Caucus August 13-14, 2015 2015 KANSAS DISABILITY CAUCUS The 13 th Kansas Disability Caucus will be held in Topeka, KS on August 13 and 14, 2015. People with all

More information

Self-directed Support Case Studies

Self-directed Support Case Studies Self-directed Support Case Studies From 2016 within Ayrshire These case studies highlight the ways people in Ayrshire are using SDS to improve their lives. All stories are anonymised and the images are

More information

Event Programme Excellence In Healthcare

Event Programme Excellence In Healthcare Event Programme Excellence In Healthcare Wednesday 29th - Thursday 30th November 2017 Wokefield Estate, Berkshire Wokefield Estate Goodboys Lane Reading Berkshire RG7 3AE The public sector needs to cut

More information

STUDY ON THE OPTIMAL CREW SCHEDULING FOR THE GREEN LINE OF METROPOLITANO DE LISBOA. NIKHIL MENON JOAO FIALHO

STUDY ON THE OPTIMAL CREW SCHEDULING FOR THE GREEN LINE OF METROPOLITANO DE LISBOA. NIKHIL MENON JOAO FIALHO STUDY ON THE OPTIMAL CREW SCHEDULING FOR THE GREEN LINE OF METROPOLITANO DE LISBOA. A PROJECT REPORT PREPARED BY NIKHIL MENON JOAO FIALHO MSc (COMPLEX TRANSPORT INFRASTRUCTURE SYSTEMS) In partial fulfillment

More information

LECTURE 27 ENERGY IN THE BODY

LECTURE 27 ENERGY IN THE BODY LECTURE 27 ENERGY IN THE BODY 11.1 Transforming energy Efficiency 11.2 Energy in the body Getting energy from food: energy input Using energy in the body: energy output Efficiency of the human body Energy

More information

Canadian Cancer Society Relay For Life Awareness Chair

Canadian Cancer Society Relay For Life Awareness Chair Canadian Cancer Society Relay For Life Awareness Chair ROLE This position is responsible for two types of awareness: awareness and promotion cancer awareness and education In order to have a successful,

More information

Fun and Fit Forever: Exercise. May 21, :00-7:30 p.m. All About Kids

Fun and Fit Forever: Exercise. May 21, :00-7:30 p.m. All About Kids Fun and Fit Forever: Exercise May 21, 2009 6:00-7:30 p.m. All About Kids The Florida Institute of Education at the University of North Florida 1 Standards, Outline and Materials Program Goal: To combat

More information

Peer Mentoring Guide for Student Mentees

Peer Mentoring Guide for Student Mentees Peer Mentoring Guide for Student Mentees 2 Contents Welcome and Introduction 3 Frequently Asked Questions 4-5 What Students Say... 6 Guidelines for Mentees 7 Data Protection Both mentors and mentees must

More information

Unit 2 Boundary Value Testing, Equivalence Class Testing, Decision Table-Based Testing. ST 8 th Sem, A Div Prof. Mouna M.

Unit 2 Boundary Value Testing, Equivalence Class Testing, Decision Table-Based Testing. ST 8 th Sem, A Div Prof. Mouna M. Unit 2 Boundary Value Testing, Equivalence Class Testing, Decision Table-Based Testing ST 8 th Sem, A Div 2017-18 Prof. Mouna M. Naravani 19-02-2018 Dept. of CSE, BLDEACET, Vijarapur 2 Boundary Value Testing

More information

Exhibitor Toolbox 2018 OHLA Annual Conference

Exhibitor Toolbox 2018 OHLA Annual Conference Exhibitor Toolbox 2018 OHLA Annual Conference Event Information: Monday November 19 th and Tuesday October 20 th Nationwide Hotel and Conference Center 100 Green Meadows Dr S, Lewis Center, OH 43035 NorthPointe

More information

renew You can t predict if you will get lower your cancer risk Learn about screenings for colon cancer. See Page 5. Fall

renew You can t predict if you will get lower your cancer risk Learn about screenings for colon cancer. See Page 5. Fall renew A newsletter from UnitedHealthcare lower your cancer risk You can t predict if you will get cancer. But, fortunately, you can take steps to lower your risk. Follow these tips from the American Cancer

More information

NHS Institute for Innovation and Improvement All rights reserved.

NHS Institute for Innovation and Improvement All rights reserved. Film: Introduction The ebd approach a service improvement methodology Before we start, a quick survey How satisfied were you with the information you received prior to this event? A B C D E Very Good Very

More information

Registered Charity number

Registered Charity number For more information please contact the team at Alexander Devine Children s Hospice Service by emailing fundraising@alexanderdevine.org or by calling 01753 567630. Registered Charity number 1118947 Get

More information

BIOL 458 BIOMETRY Lab 7 Multi-Factor ANOVA

BIOL 458 BIOMETRY Lab 7 Multi-Factor ANOVA BIOL 458 BIOMETRY Lab 7 Multi-Factor ANOVA PART 1: Introduction to Factorial ANOVA ingle factor or One - Way Analysis of Variance can be used to test the null hypothesis that k or more treatment or group

More information

Human Information Processing. CS160: User Interfaces John Canny

Human Information Processing. CS160: User Interfaces John Canny Human Information Processing CS160: User Interfaces John Canny Review Paper prototyping Key part of early design cycle Fast and cheap, allows more improvements early Formative user study Experimenters

More information

Webelos Activity Badge Athlete

Webelos Activity Badge Athlete Webelos Activity Badge Athlete Prepared By: Rich Smith Cubmaster Pack 133 June, 2007 The information in this Activity Badge Outline has come from many sources, including the Internet, BALOO S BUGLE, the

More information

Chapter 3 Software Packages to Install How to Set Up Python Eclipse How to Set Up Eclipse... 42

Chapter 3 Software Packages to Install How to Set Up Python Eclipse How to Set Up Eclipse... 42 Table of Contents Preface..... 21 About the Authors... 23 Acknowledgments... 24 How This Book is Organized... 24 Who Should Buy This Book?... 24 Where to Find Answers to Review Questions and Exercises...

More information

AMEN Webinar Series. Parent Ambassadors. March 17, 2015

AMEN Webinar Series. Parent Ambassadors. March 17, 2015 AMEN Webinar Series Parent Ambassadors March 17, 2015 Let s take a look at.. Largest diocesan school system in the United States 244 schools serving 84,000 students in Chicago, Cook and Lake Counties ONE

More information

Brighton and Hove Learning Disability Partnership Board Minutes of Meeting 17 th May 2010

Brighton and Hove Learning Disability Partnership Board Minutes of Meeting 17 th May 2010 Present: Cllr Dee Simson... Deputy Co-Chair Sarah Watson...Deputy Co-Chair Diana Bernhardt... Lead Commissioner for Learning Disabilities Betty Vincent... Link Group Sarah Pickard... Link Group Support

More information

Ross Jeffries Speed Seduction

Ross Jeffries Speed Seduction Ross Jeffries Speed Seduction How To Meet Women Anytime, Anywhere (10-Part Seduction Mastery Series) Part 2: Avoid the Confidence Trap www.seduction.com This transcript may not be duplicated without written

More information

The amazing difference an Assistance Dog makes to the family of a child with autism...

The amazing difference an Assistance Dog makes to the family of a child with autism... The amazing difference an Assistance Dog makes to the family of a child with autism... Irish Guide Dogs Assistance Dog Programme The two qualifying criteria are: a) Your child s date of birth which must

More information

Ontario South Assembly (Area 86) October 28, 29, 30, 2016 Doubletree by Hilton

Ontario South Assembly (Area 86) October 28, 29, 30, 2016 Doubletree by Hilton Ontario South Assembly (Area 86) October 28, 29, 30, 2016 Doubletree by Hilton 300 King St. London,ON Realizing Our Spiritual Potential FRIDAY, OCTOBER 28,2016 (evening session) The meeting opened with

More information

The story of Snow White is a beautiful fairytale with princesses, princes and

The story of Snow White is a beautiful fairytale with princesses, princes and The story of Snow White is a beautiful fairytale with princesses, princes and dwarfs. The fairytale is about a queen who has a very pretty daughter with black hair, snow-white face and red lips. 1. What

More information

Keeping your diabetes support as mobile as you are,

Keeping your diabetes support as mobile as you are, Millions of people have diabetes. But we at Novo Nordisk know that managing diabetes is a personal journey. That is why we created the e-book Your guide to better office visits, with valuable insights

More information

THE GAME: BONUS CHAPTER

THE GAME: BONUS CHAPTER THE GAME: BONUS CHAPTER THE ORIGIN OF ROSS JEFFRIES By Neil Strauss Ross Jeffries, by all accounts, was an angry man when he was in his 20s. His ambition was comedy: stand-up, screenplays, whatever would

More information

March Newsletter 2018

March Newsletter 2018 March Newsletter 2018 Mission Statement: AAUW advances equity for women and girls through advocacy, education, philanthropy, and research. Please do not reply to this e-mail to RSVP. The Affiliate e-mail

More information

Learner resource 1b Heart Rate Investigation

Learner resource 1b Heart Rate Investigation Worksheet B AIMS OF THIS SESSION: 1. Learn how to take your own and someone else s radial pulse. 2. Investigate the short-term effects of exercise on heart rate. What is your pulse? The radial pulse is

More information

Intimacy Anorexia: The Book. By Douglas Weiss, Ph.D.

Intimacy Anorexia: The Book. By Douglas Weiss, Ph.D. Intimacy Anorexia: The Book By Douglas Weiss, Ph.D. Chapters Contents 1 What is it? 11 2 Characteristics 31 3 Causes 57 4 Initiating Anorexic Patterns 71 5 Is it an Addiction? 77 6 Addiction Continuum

More information

Intelligent Agents. Philipp Koehn. 16 February 2017

Intelligent Agents. Philipp Koehn. 16 February 2017 Intelligent Agents Philipp Koehn 16 February 2017 Agents and Environments 1 Agents include humans, robots, softbots, thermostats, etc. The agent function maps from percept histories to actions: f : P A

More information

Whose Problem Is It? Mental Health & Illness in Long-term Care

Whose Problem Is It? Mental Health & Illness in Long-term Care Whose Problem Is It? Mental Health & Illness in Long-term Care Revised by M. Smith (2005) from M. Smith & K.C. Buckwalter (1993), Whose Problem Is It? Mental Health & Illness in Long-term Care, The Geriatric

More information

Making Haircuts More Peaceful. by Colleen Spano, M.S.Ed Shear Sunshine, LLC

Making Haircuts More Peaceful. by Colleen Spano, M.S.Ed Shear Sunshine, LLC Making Haircuts More Peaceful by Colleen Spano, M.S.Ed Shear Sunshine, LLC Agenda Autism and the Sensory System Routines Prepare, prepare, prepare! Social stories and other tools Resources Contact Information

More information

Review Questions in Introductory Knowledge... 37

Review Questions in Introductory Knowledge... 37 Table of Contents Preface..... 17 About the Authors... 19 How This Book is Organized... 20 Who Should Buy This Book?... 20 Where to Find Answers to Review Questions and Exercises... 20 How to Report Errata...

More information

Statisticians deal with groups of numbers. They often find it helpful to use

Statisticians deal with groups of numbers. They often find it helpful to use Chapter 4 Finding Your Center In This Chapter Working within your means Meeting conditions The median is the message Getting into the mode Statisticians deal with groups of numbers. They often find it

More information

Answers to Common Physician Questions and Objections

Answers to Common Physician Questions and Objections PUSS, RNR PARTNERS IN IMPROVEMENT" Answers to Common Physician Questions and Objections The following document highlights five common questions or objections Consultants, Account Executives and Account

More information

Top Ten Things to Know About Motivational Interviewing

Top Ten Things to Know About Motivational Interviewing Top Ten Things to Know About Motivational Interviewing Theresa Moyers, Ph.D. Department of Psychology, University of New Mexico Center on Alcoholism, Substance Abuse and Addictions (CASAA) Four Foundational

More information

Infliximab infusion for patients with Crohn s disease. GI Unit Patient Information Leaflet

Infliximab infusion for patients with Crohn s disease. GI Unit Patient Information Leaflet Infliximab infusion for patients with Crohn s disease GI Unit Patient Information Leaflet What is Infliximab? Infliximab (Remicade) is a medication that is used for patients with Crohn s disease whose

More information

with Deborah Gruenfeld Professor, Stanford Graduate School of Business People decide how competent you are in a fraction of a second.

with Deborah Gruenfeld Professor, Stanford Graduate School of Business People decide how competent you are in a fraction of a second. with Deborah Gruenfeld Professor, Stanford Graduate School of Business KEY POINTS People decide how competent you are in a fraction of a second. Factors used to determine your competence: 7% words, 38%

More information

WALKMS.ORG WALK. Visit our website and check your for up-to date information about weather and other day-of details.

WALKMS.ORG WALK. Visit our website and check your  for up-to date information about weather and other day-of details. WALKMS.ORG 1-800-883-WALK Visit our website and check your email for up-to date information about weather and other day-of details. THANK YOU TO OUR PREMIER NATIONAL SPONSOR PRESENTED LOCALLY BY WHEN WILL

More information

Diet Guide pt. 1: The Basics

Diet Guide pt. 1: The Basics Diet Guide pt. 1: The Basics Nutrition Update Your Knowledge If you want to get big, you have to eat big. But that doesn t mean visiting the nearest fast-food outlet on a daily basis. It means you have

More information

2016 Children and young people s inpatient and day case survey

2016 Children and young people s inpatient and day case survey NHS Patient Survey Programme 2016 Children and young people s inpatient and day case survey Technical details for analysing trust-level results Published November 2017 CQC publication Contents 1. Introduction...

More information

How do you design an intelligent agent?

How do you design an intelligent agent? Intelligent Agents How do you design an intelligent agent? Definition: An intelligent agent perceives its environment via sensors and acts rationally upon that environment with its effectors. A discrete

More information

Rational Agents (Ch. 2)

Rational Agents (Ch. 2) Rational Agents (Ch. 2) Extra credit! Occasionally we will have in-class activities for extra credit (+3%) You do not need to have a full or correct answer to get credit, but you do need to attempt the

More information

Neural circuits PSY 310 Greg Francis. Lecture 05. Rods and cones

Neural circuits PSY 310 Greg Francis. Lecture 05. Rods and cones Neural circuits PSY 310 Greg Francis Lecture 05 Why do you need bright light to read? Rods and cones Photoreceptors are not evenly distributed across the retina 1 Rods and cones Cones are most dense in

More information

A NEW MOTHER S. emotions. Your guide to understanding maternal mental health

A NEW MOTHER S. emotions. Your guide to understanding maternal mental health A NEW MOTHER S emotions Your guide to understanding maternal mental health It is not your fault It is treatable Understanding Maternal Mental Health Life with a new baby is not always easy and the adjustment

More information

Lecture 17: The Cognitive Approach

Lecture 17: The Cognitive Approach Lecture 17: The Cognitive Approach I. INTRODUCTION A. Thought Experiment What would happen if aliens landed on Earth? How would we try to understand them? What kind of information would we have What kind

More information

Healthy Weight: Healthy Wales. Youth and community version

Healthy Weight: Healthy Wales. Youth and community version Healthy Weight: Healthy Wales Youth and community version Introduction The Welsh Government want everyone in Wales to be a healthy weight. We want people to eat healthy food and be active. We all make

More information

Changing Patterns. healthyfutures.nhs.uk/llb

Changing Patterns. healthyfutures.nhs.uk/llb Changing Patterns healthyfutures.nhs.uk/llb How do our eating habits develop? When we eat food that tastes good and gives us pleasure, endorphins (we like to think of them as happy chemicals) fill our

More information

FIGHTING DRUG-RESISTANT MALARIA

FIGHTING DRUG-RESISTANT MALARIA FIGHTING DRUG-RESISTANT MALARIA Read the daily message and record notes of important points and deliverables. (5 min) NSEI 1.3.1 WARM-UP Open your pinned Daily Message Notes Add the today s date and the

More information

Healthy Coping. Learning You Have Diabetes. Stress. Type of Stress

Healthy Coping. Learning You Have Diabetes. Stress. Type of Stress Healthy Coping Learning You Have Diabetes Learning you have diabetes changes your life forever. You may feel scared, shocked, angry or overwhelmed. You may not want to believe it. These are normal reactions.

More information

Laboratory for Shape and Depth/Distance Perception

Laboratory for Shape and Depth/Distance Perception Name Laboratory for Shape and Depth/Distance Perception 1. Pictorial Depth Cues [Monocular Cues] a. Depth Cue Where it appears in the painting What time of day might be depicted in the painting and what

More information

4/29/15. Like handedness, type theory suggests we have hard-wired preferences for the elements of psychological type

4/29/15. Like handedness, type theory suggests we have hard-wired preferences for the elements of psychological type Like handedness, type theory suggests we have hard-wired preferences for the elements of psychological type 1. The first objective of this training is to help you determine your preference within each

More information

RELEASED. Clearing your active insulin

RELEASED. Clearing your active insulin To clear all your settings: 1. Make sure the pump is not connected to your body. 2. Go to the Manage Settings screen. Menu > Utilities > Manage Settings 3. Simultaneously press and hold and until the Manage

More information

ncounter Data Analysis Guidelines for Copy Number Variation (CNV) Molecules That Count NanoString Technologies, Inc.

ncounter Data Analysis Guidelines for Copy Number Variation (CNV) Molecules That Count NanoString Technologies, Inc. ncounter Data Analysis Guidelines for Copy Number Variation (CNV) NanoString Technologies, Inc. 530 Fairview Ave N Suite 2000 Seattle, Washington 98109 www.nanostring.com Tel: 206.378.6266 888.358.6266

More information

The Importance of Exercises in Your Business Continuity and Crisis Management Programs B3

The Importance of Exercises in Your Business Continuity and Crisis Management Programs B3 The Importance of Exercises in Your Business Continuity and Crisis Management Programs B3 Monday, June 9 11:30 am Joe Flach Safe Harbor Consulting Session Agenda Introductions Why Exercise? The Test The

More information

Travel Placement Handbook

Travel Placement Handbook Travel Placement Handbook Getting Started 1. Before beginning the travel nanny placement process, our families provide us with a detailed application to assess their needs. a. Adventure Nannies then interviews

More information

Rethink Weight- Loss Truths

Rethink Weight- Loss Truths Rethink Weight- Loss Truths (That Aren't ) A few sessions ago, you dealt with emotional roadblocks standing in the way of weight-loss success. Now let's dig a bit deeper to uncover any limiting beliefs

More information

Materials: scale metric ruler stairs stopwatch

Materials: scale metric ruler stairs stopwatch Lab # : Power Work-Out Lab Name: Period: Date: Partner name (s): Purpose: 1. To approximate how much work and power your body generates against gravity when climbing stairs and when performing a physical

More information

The Art, Skill & Practice of Professional Coaching

The Art, Skill & Practice of Professional Coaching Module 2: Foundational Principles of Coaching Lesson 4 Teaching 1 The Presuppositions of Professional Coaching (Pt: 1) Program Instructions This journal/workbook is an integral part of your learning experience.

More information

Be Fit for Life Series. Key Number Five Increase Metabolism

Be Fit for Life Series. Key Number Five Increase Metabolism Key #5 Increase Metabolism Page 1 of 9 Be Fit for Life Series Key Number Five Increase Metabolism Sit or lie in a safe and comfortable position I want you to close your eyes keep them closed until I ask

More information

Enhanced Recovery After Surgery (ERAS) Diary

Enhanced Recovery After Surgery (ERAS) Diary Cardiac Surgery Enhanced Recovery After Surgery (ERAS) Diary Patient s Name: Options available If you d like a large print, audio, Braille or a translated version of this leaflet then please call: 01253

More information

Home Health (2-Hour) Online Dementia Care Training Program

Home Health (2-Hour) Online Dementia Care Training Program Your Name: Date: Home Health (2-Hour) Online Dementia Care Training Program Module 1 Worksheet: INTRODUCTION TO DEMENTIA 1. You just met Mrs. Clara Jones. Think about Mr. Sanchez, a person with dementia

More information

Memory Scanning for Words Versus Categories z

Memory Scanning for Words Versus Categories z JOURNAL OF VERBAL LEARNING AND VERBAL BEHAVIOR 10, 522-527 (1971) Memory Scanning for Words Versus Categories z JAMES F. JUOLA AND R. C. ATKINSON Stanford University, Stanford, California 94305 Two groups

More information

HOW TO START AN MPN PATIENT SUPPORT GROUP MPN RESEARCH FOUNDATION

HOW TO START AN MPN PATIENT SUPPORT GROUP MPN RESEARCH FOUNDATION HOW TO START AN MPN PATIENT SUPPORT GROUP MPN RESEARCH FOUNDATION How to begin 1. Find Potential Group Members The first step to take in establishing a support group is to get the word out to MPN patients

More information

Bereavement. A Guide. Information on coping with the loss of a child

Bereavement. A Guide. Information on coping with the loss of a child A Guide Information on coping with the loss of a child Coping with grief... 3 Seeking peace, comfort and hope: Religious and spiritual care... 4 Advice for parents regarding how to deal with siblings and

More information

STAT 113: PAIRED SAMPLES (MEAN OF DIFFERENCES)

STAT 113: PAIRED SAMPLES (MEAN OF DIFFERENCES) STAT 113: PAIRED SAMPLES (MEAN OF DIFFERENCES) In baseball after a player gets a hit, they need to decide whether to stop at first base, or try to stretch their hit from a single to a double. Does the

More information

Session 1 Reading. Directions. Session One 3 Go On

Session 1 Reading. Directions. Session One 3 Go On Session 1 Reading Directions In this part of ELAP Plus Third Edition, you will read five passages: Nervous Nelly Year-Round School The Rainy Day Play All About Vitamins Benefits of the Hoover Dam There

More information

The Revised Treatment Manual for the Brief Behavioral Activation Treatment for Depression (BATD-R) Pre - Session

The Revised Treatment Manual for the Brief Behavioral Activation Treatment for Depression (BATD-R) Pre - Session The Revised Treatment Manual for the Brief Behavioral Activation Treatment for Depression (BATD-R) Pre-Session Key Elements: 1. Discussion of Depression Pre - Session 2. Introduction to Treatment Rationale

More information

Class Period: Scientific Method Review. Please match the following terms by writing the corresponding letter on the line provided.

Class Period: Scientific Method Review. Please match the following terms by writing the corresponding letter on the line provided. Name: Class Period: Scientific Method Review Vocabulary Matching Please match the following terms by writing the corresponding letter on the line provided. 1. b A logical judgment or interpretation based

More information

Try using a number as an adjective when talking to children. Let s take three books home or There are two chairs at this table.

Try using a number as an adjective when talking to children. Let s take three books home or There are two chairs at this table. Ages 0-18 mos. Try using a number as an adjective when talking to children. Let s take three books home or There are two chairs at this table. Ages 0-18 mos. Use the words more and less to describe stacks

More information

Community wellbeing Voice of the User report: Summary for stakeholders

Community wellbeing Voice of the User report: Summary for stakeholders Community wellbeing Voice of the User report: Summary for stakeholders What Works Centre for Wellbeing, Community wellbeing evidence programme December 2015 This short report summarises the stakeholder

More information

GIVE BACK GET DIRTY. GET FIT Are you looking for a way to promote physical activity and wellness at your workplace or within your group?

GIVE BACK GET DIRTY. GET FIT Are you looking for a way to promote physical activity and wellness at your workplace or within your group? GIVE BACK GET DIRTY GET FIT Are you looking for a way to promote physical activity and wellness at your workplace or within your group? Do you want to support a fundraising initiative that is coordinated

More information

STOR 155 Section 2 Midterm Exam 1 (9/29/09)

STOR 155 Section 2 Midterm Exam 1 (9/29/09) STOR 155 Section 2 Midterm Exam 1 (9/29/09) Name: PID: Instructions: Both the exam and the bubble sheet will be collected. On the bubble sheet, print your name and ID number, sign the honor pledge, also

More information

INTERMITTENT FASTING PROTOCOL

INTERMITTENT FASTING PROTOCOL 1 INTERMITTENT FASTING PROTOCOL Intermittent Fasting (IF) has quickly become one of the most popular trends in the fitness industry. From how easy it is to follow, to the many health benefits that have

More information

GEORGIA PECAN GROWERS ASSOCIATION S

GEORGIA PECAN GROWERS ASSOCIATION S Greetings! This year we are ecstatic to host the 53 rd Annual GPGA Educational Conference and Trade Show at the UGA Tifton-Campus Conference Center! With record attendance in 2017, we look forward to making

More information