Codeforces Round #283 (Div. 2) b_html/css_WEB-ITnose
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
풀어 주다: 2016-06-24 11:51:59
1 | # include <fstream># include <iostream># include <cstring>using namespace std;#define max(a, b) ((a) > (b) ? (a) : (b))#define min(a, b) ((a) > (b) ? (b) : (a)) #define abs (a) ((a) > 0 ? (a) : (0 - (a)))#define CLR(vec) memset(vec, 0, sizeof(vec))#ifdef DEBUGifstream in;ofstream out;#define CIN in#define COUT out# else #define CIN cin#define COUT cout# endif #define MAXN 1010int n;int table[MAXN];int record1[MAXN];int record2[MAXN];int tmp;string str;int *old_record;int *curr_record;int main(void){ ios_base::sync_with_stdio(0);#ifdef DEBUG CIN.open( "./in" , ios::in); COUT.open( "./out" , ios::out);# endif CIN >> n; CIN >> str; for (int i = 0; i < n; i++) table[i] = str[i] - '0' ; tmp = table[0]; old_record = record1; curr_record = record2; for (int i = 0; i < n; i++){ if (table[i] >= tmp) old_record[i] = table[i] - tmp; else old_record[i] = 10 + table[i] - tmp; } for (int i = 1; i < n; i++){ tmp = table[n - 1]; memmove(table + 1, table, sizeof(int) * (n - 1)); table[0] = tmp; int flag = 0; for (int j = 0; j < n; j++){ if (table[j] >= tmp) curr_record[j] = table[j] - tmp; else curr_record[j] = 10 + table[j] - tmp; if ( 0 == flag ){ if (curr_record[j] < old_record[j]) flag = 1; if (curr_record[j] > old_record[j]) break ; } } if ( 1 == flag){ int *swp_record = old_record; old_record = curr_record; curr_record = swp_record; } } for (int i = 0; i < n; i++) COUT << old_record[i]; COUT << "\n" ; return 0;}
|
로그인 후 복사
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
-
2025-02-26 03:58:14
-
2025-02-26 03:38:10
-
2025-02-26 03:17:10
-
2025-02-26 02:49:09
-
2025-02-26 01:08:13
-
2025-02-26 00:46:10
-
2025-02-25 23:42:08
-
2025-02-25 22:50:13
-
2025-02-25 21:54:11
-
2025-02-25 20:45:11
최신 이슈
-
2025-03-25 12:28:46
-
2025-03-25 12:21:42
-
2025-03-25 12:10:53
-
2025-03-25 12:02:42
-
2025-03-25 11:58:42