第七次codeforces竞技结束 #258 Div 2
这次出了两题,A和B,C的话我居然就差一个(n%3)就能ac了Q^Q 哭…… 要是C加了那一行出了的话多帅气呀…… A. Game With Sticks time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output After winni
这次出了两题,A和B,C的话我居然就差一个(n%3)就能ac了Q^Q 哭……
要是C加了那一行出了的话多帅气呀……
A. Game With Sticks
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
After winning gold and silver in IOI 2014, Akshat and Malvika want to have some fun. Now they are playing a game on a grid made of n horizontal and m vertical sticks.
An interdiv point is any point on the grid which is formed by the interdiv of one horizontal stick and one vertical stick.
In the grid shown below, n?=?3 and m?=?3. There are n?+?m?=?6 sticks in total (horizontal sticks are shown in red and vertical sticks are shown in green). There are n·m?=?9 interdiv points, numbered from 1 to 9.

The rules of the game are very simple. The players move in turns. Akshat won gold, so he makes the first move. During his/her move, a player must choose any remaining interdiv point and remove from the grid all sticks which pass through this point. A player will lose the game if he/she cannot make a move (i.e. there are no interdiv points remaining on the grid at his/her move).
Assume that both players play optimally. Who will win the game?
Input
The first line of input contains two space-separated integers, n and m (1?≤?n,?m?≤?100).
Output
Print a single line containing "Akshat" or "Malvika" (without the quotes), depending on the winner of the game.
Sample test(s)
input
1 |
|
output
1 |
|
input
1 |
|
output
1 |
|
input
1 |
|
output
1 |
|
Note
Explanation of the first sample:
The grid has four interdiv points, numbered from 1 to 4.

If Akshat chooses interdiv point 1, then he will remove two sticks (1?-?2 and 1?-?3). The resulting grid will look like this.

Now there is only one remaining interdiv point (i.e. 4). Malvika must choose it and remove both remaining sticks. After her move the grid will be empty.
In the empty grid, Akshat cannot make any move, hence he will lose.
Since all 4 interdiv points of the grid are equivalent, Akshat will lose no matter which one he picks.
这道题呢意思是有这么多棒子摆成网格状,一人一次选一个交叉点拿走那俩棒子,没有交叉点可以拿的输。
因为一个交叉点由一纵一横组成,每次消除一纵一横,所以自然是纵横中某一个拿完了就结束了:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
|
output
1 2 |
|
input
1 2 |
|
output
1 2 |
|
input
1 2 |
|
output
1 |
|
input
1 2 |
|
output
1 2 |
|
Note
Sample 1. You can reverse the entire array to get [1,?2,?3], which is sorted.
Sample 3. No segment can be reversed such that the array will be sorted.
Definitions
A segment [l,?r] of array a is the sequence a[l],?a[l?+?1],?...,?a[r].
If you have an array a of size n and you reverse its segment [l,?r], the array will become:
a[1],?a[2],?...,?a[l?-?2],?a[l?-?1],?a[r],?a[r?-?1],?...,?a[l?+?1],?a[l],?a[r?+?1],?a[r?+?2],?...,?a[n?-?1],?a[n].
B题的话呢就是说有一个数组,我们只能选择其中一个连续的数组序列反序,问是否能一次操作后使整个数组升序。
用dp做标记找一段持续降序的序列反向,然后检测反向后的时不时严格升序即可:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
output
1 2 3 4 5 |
|
Note
Sample 1. There has not been any match up to now (k?=?0,?d1?=?0,?d2?=?0). If there will be three matches (1-2, 2-3, 3-1) and each team wins once, then at the end each team will have 1 win.
Sample 2. You missed all the games (k?=?3). As d1?=?0 and d2?=?0, and there is a way to play three games with no winner of tournament (described in the previous sample), the answer is "yes".
Sample 3. You missed 4 matches, and d1?=?1,?d2?=?0. These four matches can be: 1-2 (win 2), 1-3 (win 3), 1-2 (win 1), 1-3 (win 1). Currently the first team has 2 wins, the second team has 1 win, the third team has 1 win. Two remaining matches can be: 1-2 (win 2), 1-3 (win 3). In the end all the teams have equal number of wins (2 wins).
这道题的意思是有3个队伍,总共要打n场比赛,已经打了k场,这k场之后一队和二队的得分差的绝对值为d1,二队和三队得分差绝对值为d2,问有没有可能n场都打完了之后三个队伍平手。
经枚举题意,这道题呢有这么几个隐含条件:
1、n可以不是3的倍数 Test 4 n=999999980 ,这就是我wa的原因……我没有写(n%3==0)cout
2、Note中说明了不是循环打,可以就两个队打到天荒地老……
1-2 (win 2), 1-3 (win 3), 1-2 (win 1), 1-3 (win 1),1-2
(win 2), 1-3 (win 3).
3、存在 【k场之后不可能存在d1、d2的此种数据】 的可能性: Test 5 n=1,k=1,d1=0,d2=0
这道题如下判定即可:
1、n是否能被3整除(场数都不能被3整除的话最后三个人怎么可能win数相同)
2、d1=d2=0 的时候直接看n-k是否能被3整除
3、绝对值d1,d2 上符号,四种情况:++,+-,-+,--
依次判断1) 此种情况下最大的那个队伍当前胜场有没有超过n/3
2) 三个队按照当前情况下已打场数和是否超过k
3) 三个队按照最大队补齐之后k场剩余场是否为非负
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
|
output
1 |
|
input
1 |
|
output
1 |
|
input
1 |
|
output
1 |
|
input
1 |
|
output
1 |
|
Note
In example 1, there are three good substrings ("b", "b", and "bb"). One of them has even length and two of them have odd length.
In example 2, there are six good substrings (i.e. "b", "a", "a", "b", "aa", "baab"). Two of them have even length and four of them have odd length.
In example 3, there are seven good substrings (i.e. "b", "a", "b", "b", "bb", "bab", "babb"). Two of them have even length and five of them have odd length.
Definitions
A substring s[l,?r] (1?≤?l?≤?r?≤?n) of string s?=?s1s2... sn is string slsl?+?1... sr.
A string s?=?s1s2... sn is a palindrome if it is equal to string snsn?-?1... s1.
这道题呢是说一个【仅由a、b组成】的字符串,其中任意一个子串压缩(压缩的意思是所有连续的a或连续的b都由一个a或b来代替)后为回文的话成为好子串,问偶数长度的偶子串有多少个,奇数长度的偶子串有多少个。
技巧:
1、压缩后获得的一定是a、b相间的字符串,如a\ab\aba\ababababababa\bababa
2、压缩后的长度若为奇数则为回文
3、原字符串的偶数位到偶数位、奇数位到奇数位的子串长度为奇数,奇数位到偶数位、偶数位到奇数位的子串长度为偶数
4、所以这是个数学题
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
|

ホットAIツール

Undresser.AI Undress
リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover
写真から衣服を削除するオンライン AI ツール。

Undress AI Tool
脱衣画像を無料で

Clothoff.io
AI衣類リムーバー

AI Hentai Generator
AIヘンタイを無料で生成します。

人気の記事

ホットツール

メモ帳++7.3.1
使いやすく無料のコードエディター

SublimeText3 中国語版
中国語版、とても使いやすい

ゼンドスタジオ 13.0.1
強力な PHP 統合開発環境

ドリームウィーバー CS6
ビジュアル Web 開発ツール

SublimeText3 Mac版
神レベルのコード編集ソフト(SublimeText3)

ホットトピック











チームファイト タクティクスの各シーズンは約 3 か月続きます。現在、チームファイト タクティクス S11 シーズンの米国テスト サーバーは 3 月 7 日に更新および開始され、チームファイト タクティクスとゴールデン ショベルは 3 月 21 日に更新および開始されます。シーズンはおそらく7月上旬に終了するでしょう。 TFT S11 はいつ終了しますか? 回答: 7 月上旬。 1. S11 シーズンは 7 月上旬に終了すると推測されており、具体的な終了日は公式発表を待つ必要があります。 2. Teamfight Tactics の各シーズンは約 3 か月続きます。 3. チームファイト タクティクス S11 シーズンの米国テスト サーバーは 3 月 7 日に更新および開始され、チームファイト タクティクスとゴールデン ショベルは 3 月 21 日に更新および開始されます。 4. 新しいゲームプレイメカニズムが S11 シーズンに追加され、20 を超える新しいオーン アーティファクトが追加されます。

コンピューターを使用すると、バックグラウンドで実行され続けてシステムの速度が低下する多くの問題が必然的に発生します。現時点で、win11 でバックグラウンドで実行を終了するショートカット キーはありますか?実際には、開くことしかできません。ショートカット キーでタスク マネージャーを起動し、閉じます。 win11 でバックグラウンド実行を終了するショートカット キー: 1. まず、キーボードの「ctrl+shift+esc」ショートカット キーの組み合わせを押して、タスク マネージャー ページを開きます。 2. [タスク マネージャー] ページで、マウスを使用して [名前] ボタン オプションをクリックし、選択します。 3. ページがジャンプした後、現在実行中のすべての「バックグラウンド プロセス」を直接確認できます。 4.実際のニーズに応じて、閉じたい背景を選択し、オプションの右下隅にある「タスクの終了」をクリックします。

多くの友人は、コンピューターを使用しているときに特定のソフトウェアが停止することに遭遇します。コンピュータが動かない場合は、タスク マネージャーを呼び出してプロセスを終了する必要があります。呼び出した後、ショートカット キーを使用してタスクを終了するにはどうすればよいですか? 最も簡単なのは削除することですが、他にもいくつかの方法があります。以下をご覧ください。タスク マネージャーでタスクを終了するショートカット キーを使用する方法 タスク マネージャーのショートカット キーを使用する方法: 1. キーの組み合わせ「Ctrl+Shift+ESC」。 2. キーの組み合わせ「Ctrl+Alt+Delete」。タスクを終了するショートカットキー 1. 終了するタスクを選択し、「削除」をクリックします。 2. 終了する必要があるタスクを選択し、「alt+e」キーの組み合わせを押します。

div の角が欠けていることを認識するための CSS メソッド: 1. HTML サンプル ファイルを作成し、div を定義します; 2. div の幅と高さの背景色を設定します; 3. 削除する必要がある div に疑似クラスを追加します隅に配置し、擬似クラスを背景色と同じ色を使用するように設定し、45 度回転して、削除する必要がある隅に配置します。

オフィスで Tencent Conference ソフトウェアをよく使用しますか? Tencent Conference で会議を終了する方法を知っていますか? 次に、エディターが Tencent Conference での会議を終了するための具体的な操作を表示します。これに興味のあるユーザーは、次のこともできます。以下を見てみましょう。コンピュータの電源を入れ、ダブルクリックして Tencent ミーティングに入り、ログインします。クリックしてクイック ミーティングに入り、ミーティングの終了ボタンをクリックします。

はじめに 最近 GitHub に ChatGPTAPI をベースにしたブラウザスクリプト openai-translator が登場しました 短期間でスターが 12k に達しました 翻訳だけでなく磨きや要約機能もサポートしています ブラウザプラグに加えて-ins, tauri パッケージも使用します。デスクトップ クライアントをお持ちの場合は、tauri が Rust 部分を使用するという事実を除けば、ブラウザ部分の実装はまだ比較的簡単です。今日は手動で実装します。 openAI によって提供されるインターフェイス。たとえば、次のコードをコピーし、ブラウザ コンソールでリクエストを開始して変換を完了できます。 //Example constOPENAI_API_KEY="s

違いは次のとおりです: 1. div はブロックレベル要素であり、span はインライン要素です。2. div は自動的に行を占有しますが、span は自動的に折り返されません。3. div はより大きな構造とレイアウトを折り返すために使用されます。テキストまたは他のインライン要素をラップするために、span が使用されます。4. div には他のブロックレベル要素とインライン要素を含めることができ、span には他のインライン要素を含めることができます。

div ボックス モデルは、Web ページのレイアウトに使用されるモデルです。Web ページ内の要素を長方形のボックスとして扱います。このモデルには、コンテンツ領域、パディング、ボーダー、マージンの 4 つの部分が含まれています。 div ボックス モデルの利点は、Web ページのレイアウトと要素間の間隔を簡単に制御できることであり、コンテンツ領域、内側の余白、境界線、外側の余白のサイズを調整することで、さまざまなレイアウト効果を実現できます。ボックス モデルには、CSS と JavaScript を通じてボックスのスタイルと動作を動的に変更できるいくつかのプロパティとメソッドも用意されています。
