Codeforces ラウンド #283 (ディビジョン 2)--B.秘密の組み合わせ_html/css_WEB-ITnose
B. Secret Combination
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
You got a box with a combination lock. The lock has a display showing n digits. There are two buttons on the box, each button changes digits on the display. You have quickly discovered that the first button adds 1 to all the digits (all digits 9 become digits 0), and the second button shifts all the digits on the display one position to the right (the last digit becomes the first one). For example, if the display is currently showing number 579, then if we push the first button, the display will show 680, and if after that we push the second button, the display will show 068.
You know that the lock will open if the display is showing the smallest possible number that can be obtained by pushing the buttons in some order. The leading zeros are ignored while comparing numbers. Now your task is to find the desired number.
Input
The first line contains a single integer n (1?≤?n?≤?1000) ? the number of digits on the display.
The second line contains n digits ? the initial state of the display.
Output
Print a single line containing n digits ? the desired state of the display containing the smallest possible number.
水题,把环展开成链,而且最多加9次,所以暴力就行
#include <map>#include <set>#include <list>#include <queue>#include <stack>#include <vector>#include <cmath>#include <cstdio>#include <cstdlib>#include <cstring>#include <iostream>#include <algorithm>using namespace std;char str[3000];char ans[3000];int main(){ int n; while (~scanf("%d", &n)) { scanf("%s", str); for (int i = n; i < 2 * n - 1; ++i) { str[i] = str[i - n]; } str[2 * n - 1] = '\0'; for (int i = 0; i < n; ++i) { ans[i] = '9'; } ans[n] = '\0'; int ret = 1; while (ret <= 10) { for (int i = 0; i < n; ++i) { int cnt = 0; bool flag = false; while (ans[cnt] == '0') { cnt++; } int j = i; while (str[j] == '0') { j++; } if (n - cnt > i + n - j) { flag = true; } else if (n - cnt == i + n - j) { for (int k = j; k < i + n; ++k) { if (ans[cnt] == str[k]) { cnt++; } else if (ans[cnt] > str[k]) { flag = true; break; } else { break; } } } if (flag) { cnt = 0; for (int k = i; k < i + n; ++k) { ans[cnt++] = str[k]; } } ans[n] = '\0'; } for (int i = 0; i < 2 * n - 1; ++i) { int tmp = str[i] - '0'; tmp = (tmp + 1) % 10; str[i] = tmp + '0'; } str[2 * n - 1] = '\0'; ret++; } printf("%s\n", ans); } return 0;}

ホット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)

ホットトピック









この記事では、HTML&lt; Progress&gt;について説明します。要素、その目的、スタイリング、および&lt; meter&gt;との違い要素。主な焦点は、&lt; Progress&gt;を使用することです。タスクの完了と&lt; Meter&gt; statiの場合

この記事では、HTML&lt; Datalist&GT;について説明します。オートコンプリートの提案を提供し、ユーザーエクスペリエンスの改善、エラーの削減によりフォームを強化する要素。

記事では、HTML5クロスブラウザーの互換性を確保するためのベストプラクティスについて説明し、機能検出、プログレッシブエンハンスメント、およびテスト方法に焦点を当てています。

この記事では、html&lt; meter&gt;について説明します。要素は、範囲内でスカラーまたは分数値を表示するために使用され、Web開発におけるその一般的なアプリケーション。それは差別化&lt; Meter&gt; &lt; Progress&gt;およびex

この記事では、html5&lt; time&gt;について説明します。セマンティックデート/時刻表現の要素。 人間の読み取り可能なテキストとともに、マシンの読みやすさ(ISO 8601形式)のDateTime属性の重要性を強調し、Accessibilitを増やします

この記事では、ブラウザのユーザー入力を直接検証するために、必要、パターン、MIN、MAX、および長さの制限などのHTML5フォーム検証属性を使用して説明します。

この記事では、モバイルデバイスのレスポンシブWebデザインに不可欠なViewportメタタグについて説明します。適切な使用により、最適なコンテンツのスケーリングとユーザーの相互作用が保証され、誤用が設計とアクセシビリティの問題につながる可能性があることを説明しています。

この記事では、&lt; iframe&gt;外部コンテンツをWebページ、その一般的な用途、セキュリティリスク、およびオブジェクトタグやAPIなどの代替案に埋め込む際のタグの目的。
