首頁 web前端 html教學 Codeforces Round #276 (Div. 2)_html/css_WEB-ITnose

Codeforces Round #276 (Div. 2)_html/css_WEB-ITnose

Jun 24, 2016 am 11:54 AM

链接:http://codeforces.com/contest/485


A. Factory

time limit per test

1 second

memory limit per test

256 megabytes

One industrial factory is reforming working plan. The director suggested to set a mythical detail production norm. If at the beginning of the day there werex details in the factory storage, then by the end of the day the factory has to produce (remainder after dividingx bym) more details. Unfortunately, no customer has ever bought any mythical detail, so all the details produced stay on the factory.

The board of directors are worried that the production by the given plan may eventually stop (that means that there will be а moment when the current number of details on the factory is divisible bym).

Given the number of details a on the first day and number m check if the production stops at some moment.

Input

The first line contains two integers a and m (1?≤?a,?m?≤?105).

Output

Print "Yes" (without quotes) if the production will eventually stop, otherwise print "No".

Sample test(s)

Input

1 5
登入後複製

Output

No
登入後複製

Input

3 6
登入後複製

Output

Yes
登入後複製


x每次加上对m取模的值,如果取模为0输出YES,如果值之前出现过,则进入循环输出No退出


#include <cstdio>#include <cstring>int vis[100002];int main(){	int a, m;	scanf("%d %d", &a, &m);	memset(vis, 0, sizeof(vis));	while(true)	{		if(a == 0)		{			printf("Yes\n");			return 0;		}		if(vis[a])		{			printf("No\n");			return 0;		}		vis[a] = 1;		a = (a + a % m) % m;	}}</cstring></cstdio>
登入後複製





B. Valuable Resources

time limit per test

1 second

memory limit per test

256 megabytes

Many computer strategy games require building cities, recruiting army, conquering tribes, collecting resources. Sometimes it leads to interesting problems.

Let's suppose that your task is to build a square city. The world map uses the Cartesian coordinates. The sides of the city should be parallel to coordinate axes. The map contains mines with valuable resources, located at some points with integer coordinates. The sizes of mines are relatively small, i.e. they can be treated as points. The city should be built in such a way that all the mines are inside or on the border of the city square.

Building a city takes large amount of money depending on the size of the city, so you have to build the city with the minimum area. Given the positions of the mines find the minimum possible area of the city.

Input

The first line of the input contains number n ? the number of mines on the map (2?≤?n?≤?1000). Each of the nextn lines contains a pair of integersxi andyi ? the coordinates of the corresponding mine (?-?109?≤?xi,?yi?≤?109). All points are pairwise distinct.

Output

Print the minimum area of the city that can cover all the mines with valuable resources.

Sample test(s)

Input

20 02 2
登入後複製

Output

Input

20 00 3
登入後複製

Output


给几个点,让这几个点都在一个正方形上或者内部,求正方形的面积的最小值,最上减最下和最右减最左的最大值作为边长


#include <cstdio>#include <algorithm>#define ll long longusing namespace std;int main(){	int n;	ll x, y;	ll mu, md, ml, mr;	ll ans = 0;	mu = mr = -2147483646;	ml = md = 2147483647;	scanf("%d", &n);	for(int i = 0; i   <p></p>  <p><br> </p>  <p><br> </p>  <p><br> </p>  <p><br> </p>  <p><br> </p>  <p></p>  <p class="sycode">   </p>
<p class="sycode">    </p>
<p class="sycode">     </p>
<p class="sycode">      </p>
<p class="sycode">       <strong>C. Bits</strong>      </p>      <p class="sycode">       </p>
<p class="sycode">        time limit per test       </p> 1 second            <p class="sycode">       </p>
<p class="sycode">        memory limit per test       </p> 256 megabytes            <br>          <p class="sycode">      </p>
<p>Let's denote as  the number of bits set ('1' bits) in the binary representation of the non-negative integer x.</p>      <p>You are given multiple queries consisting of pairs of integersl andr. For each query, find thex, such thatl?≤?x?≤?r, and is maximum possible. If there are multiple such numbers find the smallest of them.</p>          <p class="sycode">      </p>
<p class="sycode">       Input      </p>      <p>The first line contains integer n ? the number of queries (1?≤?n?≤?10000).</p>      <p>Each of the following n lines contain two integersli,?ri ? the arguments for the corresponding query (0?≤?li?≤?ri?≤?1018).</p>          <p class="sycode">      </p>
<p class="sycode">       Output      </p>      <p>For each query print the answer in a separate line.</p>          <p class="sycode">      </p>
<p class="sycode">       Sample test(s)      </p>      <p class="sycode">       </p>
<p class="sycode">        </p>
<p class="sycode">         Input        </p>        <pre class="brush:php;toolbar:false">31 22 41 10
登入後複製

Output

137
登入後複製

Note

The binary representations of numbers from 1 to 10 are listed below:

110?=?12

210?=?102

310?=?112

410?=?1002

510?=?1012

610?=?1102

710?=?1112

810?=?10002

910?=?10012

1010?=?10102


给一个区间,求区间里的数转化为二进制后拥有'1'个数最多的那个数,要是拥有'1'的数量相同,取最小的那个数输出。

直接从左端点对1进行或运算,构造出'1'最多且最小的数,直到值大于右端点


#include <cstdio>#define ll long longint main(){	int t;    scanf("%d", &t);      while(t--)    {          ll l, r, tmp, p = 1;           scanf("%I64d %I64d", &l, &r);        for(ll i = 0; i  r)            	break;              l = tmp;            p   <br>  <p></p>  <p><br> </p>  <p><br> </p>  <p><br> </p>  <p><br> </p>  <p></p>  <p class="sycode">   </p>
<p class="sycode">    <strong>D. Maximum Value</strong>   </p>   <p class="sycode">    </p>
<p class="sycode">     time limit per test    </p> 1 second      <p class="sycode">    </p>
<p class="sycode">     memory limit per test    </p> 256 megabytes      <br>    <p class="sycode">   </p>
<p>You are given a sequence a consisting ofn integers. Find the maximum possible value of (integer remainder ofai divided byaj), where1?≤?i,?j?≤?n and ai?≥?aj.</p>    <p class="sycode">   </p>
<p class="sycode">    Input   </p>   <p>The first line contains integer n ? the length of the sequence (1?≤?n?≤?2·105).</p>   <p>The second line contains n space-separated integersai (1?≤?ai?≤?106).</p>    <p class="sycode">   </p>
<p class="sycode">    Output   </p>   <p>Print the answer to the problem.</p>    <p class="sycode">   Sample test(s)  </p>  <p class="sycode">   </p>
<p class="sycode">    Input   </p>   <pre class="brush:php;toolbar:false">33 4 5
登入後複製

Output


找a[i]


#include <cstdio>  int const MAX = 2000000 + 10;  int a[MAX];  int main()  {      int n, x, ans = 0;      scanf("%d",&n);        for(int i = 0; i  ans && a[j] > i)                      ans = a[j] % i;            printf("%d\n",ans);   } </cstdio>
登入後複製





Div.1 : D. Kindergarten

time limit per test

2 seconds

memory limit per test

256 megabytes

In a kindergarten, the children are being divided into groups. The teacher put the children in a line and associated each child with his or her integer charisma value. Each child should go to exactly one group. Each group should be a nonempty segment of consecutive children of a line. A group's sociability is the maximum difference of charisma of two children in the group (in particular, if the group consists of one child, its sociability equals a zero).

The teacher wants to divide the children into some number of groups in such way that the totalsociability of the groups is maximum. Help him find this value.

Input

The first line contains integer n ? the number of children in the line (1?≤?n?≤?106).

The second line contains n integersai ? the charisma of thei-th child (?-?109?≤?ai?≤?109).

Output

Print the maximum possible total sociability of all groups.

Sample test(s)

Input

51 2 3 1 2
登入後複製

Output

Input

33 3 3
登入後複製

Output

Note

In the first test sample one of the possible variants of an division is following: the first three children form a group with sociability 2, and the two remaining children form a group with sociability 1.

In the second test sample any division leads to the same result, the sociability will be equal to 0 in each group.


把一串数列分成若干组,每组的权值为该组中最大值与最小值的差,求所有组的权值和的最大值


#include <cstdio>#define ll long longint main(){    int n, t;     scanf ("%d", &n);    ll ans = 0, t1 = 0, t2 = 0;    for(int i = 0; i  t1) t1 = ans + t;        if (!i || ans - t > t2) t2 = ans - t;        ans = t1 - t > t2 + t ? t1 - t : t2 + t;    }    printf("%I64d\n", ans);}</cstdio>
登入後複製



本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

<🎜>:泡泡膠模擬器無窮大 - 如何獲取和使用皇家鑰匙
3 週前 By 尊渡假赌尊渡假赌尊渡假赌
北端:融合系統,解釋
3 週前 By 尊渡假赌尊渡假赌尊渡假赌
Mandragora:巫婆樹的耳語 - 如何解鎖抓鉤
3 週前 By 尊渡假赌尊渡假赌尊渡假赌

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

熱門話題

Java教學
1666
14
CakePHP 教程
1425
52
Laravel 教程
1323
25
PHP教程
1272
29
C# 教程
1251
24
了解HTML,CSS和JavaScript:初學者指南 了解HTML,CSS和JavaScript:初學者指南 Apr 12, 2025 am 12:02 AM

WebDevelovermentReliesonHtml,CSS和JavaScript:1)HTMLStructuresContent,2)CSSStyleSIT和3)JavaScriptAddSstractivity,形成thebasisofmodernWebemodernWebExexperiences。

HTML:結構,CSS:樣式,JavaScript:行為 HTML:結構,CSS:樣式,JavaScript:行為 Apr 18, 2025 am 12:09 AM

HTML、CSS和JavaScript在Web開發中的作用分別是:1.HTML定義網頁結構,2.CSS控製網頁樣式,3.JavaScript添加動態行為。它們共同構建了現代網站的框架、美觀和交互性。

HTML,CSS和JavaScript的未來:網絡開發趨勢 HTML,CSS和JavaScript的未來:網絡開發趨勢 Apr 19, 2025 am 12:02 AM

HTML的未來趨勢是語義化和Web組件,CSS的未來趨勢是CSS-in-JS和CSSHoudini,JavaScript的未來趨勢是WebAssembly和Serverless。 1.HTML的語義化提高可訪問性和SEO效果,Web組件提升開發效率但需注意瀏覽器兼容性。 2.CSS-in-JS增強樣式管理靈活性但可能增大文件體積,CSSHoudini允許直接操作CSS渲染。 3.WebAssembly優化瀏覽器應用性能但學習曲線陡,Serverless簡化開發但需優化冷啟動問題。

HTML的未來:網絡設計的發展和趨勢 HTML的未來:網絡設計的發展和趨勢 Apr 17, 2025 am 12:12 AM

HTML的未來充滿了無限可能。 1)新功能和標準將包括更多的語義化標籤和WebComponents的普及。 2)網頁設計趨勢將繼續向響應式和無障礙設計發展。 3)性能優化將通過響應式圖片加載和延遲加載技術提升用戶體驗。

HTML與CSS vs. JavaScript:比較概述 HTML與CSS vs. JavaScript:比較概述 Apr 16, 2025 am 12:04 AM

HTML、CSS和JavaScript在網頁開發中的角色分別是:HTML負責內容結構,CSS負責樣式,JavaScript負責動態行為。 1.HTML通過標籤定義網頁結構和內容,確保語義化。 2.CSS通過選擇器和屬性控製網頁樣式,使其美觀易讀。 3.JavaScript通過腳本控製網頁行為,實現動態和交互功能。

HTML:建立網頁的結構 HTML:建立網頁的結構 Apr 14, 2025 am 12:14 AM

HTML是構建網頁結構的基石。 1.HTML定義內容結構和語義,使用、、等標籤。 2.提供語義化標記,如、、等,提升SEO效果。 3.通過標籤實現用戶交互,需注意表單驗證。 4.使用、等高級元素結合JavaScript實現動態效果。 5.常見錯誤包括標籤未閉合和屬性值未加引號,需使用驗證工具。 6.優化策略包括減少HTTP請求、壓縮HTML、使用語義化標籤等。

HTML與CSS和JavaScript:比較Web技術 HTML與CSS和JavaScript:比較Web技術 Apr 23, 2025 am 12:05 AM

HTML、CSS和JavaScript是構建現代網頁的核心技術:1.HTML定義網頁結構,2.CSS負責網頁外觀,3.JavaScript提供網頁動態和交互性,它們共同作用,打造出用戶體驗良好的網站。

HTML:是編程語言還是其他? HTML:是編程語言還是其他? Apr 15, 2025 am 12:13 AM

HTMLISNOTAPROGRAMMENGUAGE; ITISAMARKUMARKUPLAGUAGE.1)htmlStructures andFormatSwebContentusingtags.2)itworkswithcsssforstylingandjavascript for Interactivity,增強WebevebDevelopment。

See all articles