Show all threads Hide all threads Show all messages Hide all messages | Runtime 13 | FaNato4kA_TiMoFeYa | 1546. Japanese Sorting | 26 Jul 2024 17:13 | 1 | Don't use int("smth"), because len of number can be greater than 4000 or use sys.set_int_max_str_digits() if you use python Edited by author 26.07.2024 17:14 | OMG I GOT AC | 👑TIMOFEY👑 | 1546. Japanese Sorting | 28 Aug 2023 16:36 | 1 | try to figure out how sorting in Japanese differs from regular sorting, there really isn’t such a big difference, but there will also be one trick with which you will need to suffer | Who know how the 2nd test looks like?? | Last_Vikings | 1546. Japanese Sorting | 12 Jan 2021 22:29 | 18 | We cannot imagine the test where our prog will give wrong answer! I wonder too, always wa on test 2 1w1 01w01a Edited by author 24.04.2007 19:29 No, its not 2nd test. My prog correctly process it, but stil WA2. sorted: 01w01 01w1 01w01a z000 z00 z00p z0p and one more 0 0p 01 1 1p Edited by author 25.04.2007 20:03 Try this test: z0p z00pp z0pp z00pp00 z000pp01 z00pp01 z0pp01 z001pp00 z01pp00 z1pp00000 z01pp01 z1pp001pp0 z1pp01pp000 I get WA#2 too. Huge thanks to Alexander Kouprin, after running his test and solving the problem I got accepted. Test from Alexander Georgiev also helped me a lot. By the way, my program gives other output for some test from this thread. Here they are: abc00125a abc0125a abc00125b abc0125b abc000000000000000000000125a abc00000000000000000000125a abc0012000000000000000000000000005b abc012000000000000000000000000005b These tests have almost broken my mind while I have been thinking why they are correct and I'm happy that I do not have to fix my program because of them. Zeroes matters only if strings are equal. Try this: abc0125a abc00125a abc00125b abc0125b Try this: abc0125a abc00125a abc00125b abc0125b I suppose the last test by Peter Huggy is the most similar to second test but after all this tests WA6 Try this: abc00000000000000000000125a abc000000000000000000000125a abc0012000000000000000000000000005b abc012000000000000000000000000005b I suppose the last test by Peter Huggy is the most similar to second test but after all this tests WA6 Got AC, thanks to Alias tests :) You can also try: 0000000 000 (Already sorted) Your program must return for these tests next results (alredy sorted): 1) 000 00 0 2) 00 0 000a 3) 00a000 00a0 I don't understand this. Why is 0000000 smaller than 000? What's the logic behind it? Edited by author 12.01.2021 22:30 | test 9 | Anna Misiewicz | 1546. Japanese Sorting | 1 Nov 2019 17:47 | 1 | test 9 Anna Misiewicz 1 Nov 2019 17:47 does anybody know anything about WA on that test? | Переход с компилятора Intel C++ 7 на компиляторы G++ 4.7.2 и Visual C++ 2010 | Vasilenko Oleg Sergeevich, Chelyabinsk | 1546. Japanese Sorting | 13 Oct 2013 18:18 | 1 | Уважаемые администраторы сайта! Подскажите, пожалуйста, что Вы собираетесь делать с посылками, которые получали AC на компиляторе Intel C++ 7, и получают Time Limit на компиляторах G++ 4.7.2 и Visual C++ 2010? У меня, например, около 4-5 таких задач было, пришлось все их перерешивать по-другому. Ведь теперь нет возможности отправить задачу на старом компиляторе. Извиняйте, но тогда нужно перетестировать посылки под Intel C++ 7 на новых компиляторах, а то результаты и рейтинг получаются НЕЧЕСТНЫМИ !!! Ведь не все перерешивают уже "сданные" задачи. | Run time error 7 (Access Violation) | DR. Zhihua Lai | 1546. Japanese Sorting | 28 Mar 2013 23:08 | 2 | What the ***? Edited by author 28.03.2013 22:52 finally... omg, the tests are really hard. | When TLE 24 | AterLux | 1546. Japanese Sorting | 14 Jan 2012 19:41 | 2 | It is "antiquicksort" test. Use pivot differ from (bottom + top) / 2, for example, random choosed. maybe it's "antiquicksort" test. I use anti("antiquicksort" test) coding =) for( long i=0; i < 1e6; ++i ) swap( v[rand()%v.size()], v[rand()%v.size()] ); where 'v' is vector of string. =) Edited by author 14.01.2012 19:42 Edited by author 14.01.2012 19:42 | strange memory limit C++??? | messir | 1546. Japanese Sorting | 29 Apr 2011 02:46 | 2 | Well... I tried first to solve this problem in Java, but it resulted in TLE 15, without any visible reason. But assuming that this is Java and I'm not an expert in it, this may be... The same algorithm in C++(copy-paste with apropriate changes) passes 15th test, but receives a MLE on 20th test. My imagination can't help me to find what's the reason. All my tests can't make my program use more than 2MB of memory. I tried even more than 100KB of input in different configurations(a lot of small strings or a few of long ones,same and different, with different percent of numbers), but result is the same. What can be the test that my program uses more than 80MB??? If you think that this is because of my bad code...here it is: #include<iostream> #include<string> #include<algorithm> #include<map> #include<vector> using namespace std; class Character { public: static bool isDigit(char c) { return c>='0' && c<='9'; } }; class FastJapstring { public: string data; FastJapstring(string &data) { this->data = data; } static int skipZeroz(string &s,int from,int l) { for(int i = from; i <l;i++) if(s[i]!='0')return i; return l; } static int findNotNumber(string &s,int from,int l) { for(int i = from; i <l;i++) if(!(s[i]<='9' && s[i]>='0'))return i; return l; } static int cmpNumParts(string& fs,int ffrom,int fto, string& ss,int sfrom,int sto) { int fln = fto-ffrom; int sln = sto-sfrom; if(fln!=sln)return fln-sln; for(int i =0; i < fln; i++) { if(fs[ffrom+i]!=ss[sfrom+i]) return (int)fs[ffrom+i] - (int)ss[sfrom+i]; } return 0; } static int findNotLetter(string& s,int from,int l) { for(int i = from; i <l;i++) if(s[i]>='0'&&s[i]<='9')return i; return l; } static int cmpStrParts(string& fs,int ffrom,int fto, string& ss,int sfrom,int sto) { int fln = fto-ffrom; int sln = sto-sfrom; for(int i =0; i < min(fln,sln); i++) { if(fs[ffrom+i]!=ss[sfrom+i]) return (int)fs[ffrom+i] - (int)ss[sfrom+i]; } if(fln!=sln)return fln-sln; return 0; } int compare_to (FastJapstring &o) { string& f = data; string& s = o.data; int fi,si; if(Character::isDigit(f[0])) fi=0; else fi=1; if(Character::isDigit(s[0]))si=0; else si=1; if(fi!=si)return fi - si; int fl = f.length(); int sl = s.length(); int zeroDominate=0; if(fi==0) { fi=si=0; while(true) { int res; int fzeroZ = fi; int DigStart = skipZeroz(f, fi, fl); fzeroZ = DigStart - fi; int DigEndPlus = findNotNumber(f, DigStart, fl); int szeroZ = si; int DigStart1 = skipZeroz(s, si, sl); szeroZ = DigStart1-si; if(zeroDominate==0)zeroDominate = fzeroZ - szeroZ; int DigEndPlus1 = findNotNumber(s, DigStart1, sl); res = cmpNumParts(f, DigStart, DigEndPlus, s, DigStart1, DigEndPlus1); if(res!=0)return res; fi = DigEndPlus; si = DigEndPlus1; if(fi>=fl && si >=sl)break; if(fi>=fl)return -1; if(si>=sl)return 1; int fLetterEndPlus = findNotLetter(f, fi, fl); int sLetterEndPlus = findNotLetter(s, si, sl); res = cmpStrParts(f, fi, fLetterEndPlus, s, si, sLetterEndPlus); if(res!=0)return res; fi = fLetterEndPlus; si = sLetterEndPlus; if(fi>=fl && si >=sl)break; if(fi>=fl)return -1; if(si>=sl)return 1;
} } else { fi=si=0; while(true) { int res; int fLetterEndPlus = findNotLetter(f, fi, fl); int sLetterEndPlus = findNotLetter(s, si, sl); res = cmpStrParts(f, fi, fLetterEndPlus, s, si, sLetterEndPlus); if(res!=0)return res; fi = fLetterEndPlus; si = sLetterEndPlus; if(fi>=fl && si >=sl)break; if(fi>=fl)return -1; if(si>=sl)return 1; int fzeroZ = fi; int DigStart = skipZeroz(f, fi, fl); fzeroZ = DigStart - fi; int DigEndPlus = findNotNumber(f, DigStart, fl); int szeroZ = si; int DigStart1 = skipZeroz(s, si, sl); szeroZ = DigStart1-si; if(zeroDominate==0)zeroDominate = fzeroZ - szeroZ; int DigEndPlus1 = findNotNumber(s, DigStart1, sl); res = cmpNumParts(f, DigStart, DigEndPlus, s, DigStart1, DigEndPlus1); if(res!=0)return res; fi = DigEndPlus; si = DigEndPlus1; if(fi>=fl && si >=sl)break; if(fi>=fl)return -1; if(si>=sl)return 1; } } return -zeroDominate; } bool operator < (FastJapstring &o) { return compare_to(o)<0; } }; int main() { l: string s; vector<FastJapstring> data; //freopen("in.txt","r",stdin); while(getline(cin,s)) { if(s=="d")break; if(s.empty())continue; data.push_back(FastJapstring(s)); } sort(data.begin(),data.end());
for(int i = 0; i < data.size();i++) { cout << data[i].data << endl; } //goto l; return 0; } I had a same problem. Try not to keep the string in class. When you sort, C++ copies objects and eats all memory. When I store all strings in global array, I recived AC with 3MB memory. Also you can try to sort vector of indexes Edited by author 29.04.2011 12:26 | Why I have CRASH on test 6 | CF# /*Anoshin,Sotov,Khuramshin*/ | 1546. Japanese Sorting | 11 Jul 2010 22:41 | 4 | [code cut out] Edited by author 11.05.2007 18:43 My program gets wrong on test 6.Anyone can help? me too, i don't know where is the problem Yea! Accepted finaly! May be it will help you: don't use int to store numbers | Test 3 | Fyodor Menshikov | 1546. Japanese Sorting | 8 Feb 2009 22:31 | 1 | Test 3 Fyodor Menshikov 8 Feb 2009 22:31 Test 3 contains equal values. Edited by author 08.02.2009 22:43 | About The Testdata | SuperScz | 1546. Japanese Sorting | 14 Jul 2008 20:33 | 3 | is there any blank lines in an input file? No. At least my AC solution would ignore them. | 5 | mahbubul | 1546. Japanese Sorting | 14 Jul 2008 20:33 | 2 | 5 mahbubul 21 Apr 2007 15:15 Is there any such pic name: "aa" or like "aa10bv10" ? Re: 5 Denis Koshman 14 Jul 2008 20:33 | Test | Roman | 1546. Japanese Sorting | 14 Jul 2008 20:33 | 3 | Test Roman 21 Apr 2007 18:01 a a0 a00 => a a00 a0 Why a00 is lower than a0? In lexicographic order a0 is lower... Maybe the Black Box is incorrect?.. Edited by author 21.04.2007 18:35 Re: Test Denis Koshman 14 Jul 2008 20:33 That's part of rules inside blackbox | It seems that the sorting rule is the same as the rule windows XP used to sort files... | fOrgIvE | 1546. Japanese Sorting | 14 Jul 2008 20:32 | 9 | What rules are used in sorting zeroes? Can anyone describe? It`s very interesting question. Why "a00"<"a0"? first treat all 000000 as 0 and all 00000003 as 3 compare the whole string if equals, treat 000000 < 000 and 00000003 < 003 compare the whole string again... 0000aa < 000aa < 0000ab < 000ab Our program correctly process tests like that, but we have WA2. Zeroes matters only if strings w/o them are equal. Longer leading zero sequence makes numerical sequence LESS. | The Solution to this misleading, ill-stated problem. Simpler to code than to explain. | Anisimov Dmitry | 1546. Japanese Sorting | 14 Jul 2008 20:31 | 4 | [code deleted] Edited by moderator 09.05.2007 16:03 Can you explain me some part of your program? Becauze, I'm Pascal programer and a new one in C++. Why do you put '*' so often? What does it mean? What does "(void*)" and "*(char**)" mean? Thanks. These are typecasts required for C-style writing in C++. And * is the derefence operator (almost same as ^ in Pascal) Actually, it's easy to explain =) | Can be such test? | Taran_Alex | 1546. Japanese Sorting | 14 Jul 2008 20:30 | 3 | photo01a45b photo2a46b photo02a5b how to sot that? or it cannot be such tests? my output is: photo01a45b photo02a5b photo2a46b See blackbox app to see how to sort that... And yes, such a test can be | What's wrong with my algo? | inkognito | 1546. Japanese Sorting | 14 Jul 2008 20:29 | 2 | #include <iostream> #include <string> #include <algorithm> #include <vector> using namespace std; bool lesslength(const string& s1, const string& s2) { return s1.length()<s2.length(); } int main() { string s; vector<string>a; while((cin>>s))
{
a.push_back(s);
} stable_sort(a.begin(),a.end(),lesslength); vector<string>::iterator pos; for ( pos = a.begin(); pos != a.end(); ++pos) { cout<<*pos<<endl; } return 0; } I've WA 2. It's not just about length | Can I get the answer for my question????????? | M@rk_o[Lviv NU] | 1546. Japanese Sorting | 10 Jul 2007 20:45 | 2 | I just want to know: there are only two types of photo's names(photoZ and photoxZ (where Z is some number)), or not????????? Of course, no. Names are any strigs containing letters and digits. | How to stop inputing string in C#? While s != String.Empty or... ? | Crazy_serbs | 1546. Japanese Sorting | 2 May 2007 12:24 | 2 | while (true) { string s = Console.ReadLine(); if (s == null) break; // process s } |
|
|