| Show all threads Hide all threads Show all messages Hide all messages |
| any information about test 13 ? | SerjMakarov | 2014. Zhenya moves from parents | 23 Mar 2018 06:46 | 1 |
|
| 9th test | Shohin | 2011. Long Statement | 21 Mar 2018 07:12 | 3 |
test 2 1 1 1 1 1 1 ans: Yes |
| Time limit exceeded on tes 8 (java), i dont know which way is excellent | Aydar | 1654. Cipher Message | 21 Mar 2018 06:11 | 4 |
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Iterator; import java.util.Stack; public class problem1654 { public static void main(String[] args) throws IOException { BufferedReader inp = new BufferedReader(new InputStreamReader(System.in)); String str=inp.readLine(); Stack<Character> st=new Stack<Character>(); st.push(str.charAt(0)); String s=""; for(int i=1;i<str.length();i++){ if(!st.empty()&&st.peek()==str.charAt(i)) st.pop(); else{ st.push(str.charAt(i));
} }
while(!st.empty()){ s=s+st.pop(); } int n=s.length(); for(int i=0;i<n;i++){ System.out.print(s.charAt(n-i-1));
} }} When i used stack(from STL) in C++, i'd got TL8. But after i realzed stack by using array, i got AC your reply help me very much!3Q Don't use : while(!st.empty()){ s=s+st.pop(); } -------- Use this phrase at the end of your Code: Iterator<Character> b = st.iterator(); while(b.hasNext()){ System.out.print(b.next()); } |
| Incorrect unswer. Unknown | Ayrat | 1002. Phone Numbers | 20 Mar 2018 19:07 | 1 |
Here is my code and here is my output. Everything should work! What's wrong ? What requirements have I not fulfilled? http://lpaste.net/13924843521971322887325189087 5 it your reality real our reality our 4294967296 5 it your reality real our No solution. -1 The code is written in pure C. The compiler is gcc |
| hints | ASK | 1234. Bricks | 20 Mar 2018 16:02 | 1 |
hints ASK 20 Mar 2018 16:02 for all-integer comparison you have to use int64_t do not derive the inequality by hand, use Maxima: rot(c,s) := matrix([c,-s],[s,c]); /* D: sqrt(a^2+b^2); */ ma: rot(e/D, sqrt(D^2-e^2)/D); mb: rot(b/D, a/D); dd: (ma.mb.[a,-b])[1][1],ratsimp; load(ineq)$ assume(D>0)$ assume(a>0)$ assume(b>0)$ assume(d>0)$ assume(e>0)$ ne: d >= dd; ne: (ne * D^2)-2*a*b*e,ratsimp; |
| what went wrong here? I compiled it in dr.Java and it was okay | Riyad Ahsan Auntor | 1068. Sum | 20 Mar 2018 04:51 | 4 |
import java.util.Scanner; public class Sum{ public static void main(String args[]){ Scanner sc= new Scanner(System.in); int N, sum=0; System.out.print("Enter the value of N:"); N= sc.nextInt(); if(N<10000){ if(N<0){ for(int x=N; x<=1; x++){ sum+=x; } } else{ for(int x=1; x<=N; x++){ sum+=x; } } } System.out.println(sum); } } System.out.print("Enter the value of N:"); comment this out, automatic checker doesn't know that this text isn't the part of your answer yup did that too and it still says wrong answer Okaaaaay... if(N<10000){ i assume you wanted to check here if input data is correct, but there's no need to do that, input data is correct by default. Not to mention that you do it wrong, you check if N is between (-infinity; 9999], while N should be between [-10000; 10000]. Also i think you don't handle the N=0 case correctly, but hopefully you'll figure out why without more hints. |
| No subject | Ivan | 1068. Sum | 19 Mar 2018 23:50 | 1 |
Edited by author 20.03.2018 00:35 |
| An efficient solution | 2ch | 1223. Chernobyl’ Eagle on a Roof | 19 Mar 2018 20:39 | 1 |
Define d[i][j] to be the maximum number of floors that can be checked with i eggs after j steps. To answer the query one should do the binary search to find number of steps X such that d[input_eggs][X] >= input_floors with X being smallest possible. d[i][i] = i, d[2][5] = 15 ,d[2][6] = 21 ( 1 -> 6 -> 11 -> 15 -> 18 -> 20 -> 21 ) d[i][j] = d[i - 1][j] + d[i - 1][j - 1] + 1; Explanation of the formula: Suppose we know d[i][j - 1] and d[i - 1][j - 1] Throw an egg from (d[i - 1][j - 1] + 1) floor. Did it break? If yes, we can definitely check all floors from the first to d[i - 1][j - 1]th with remaining i - 1 eggs within remaining j - 1 steps. If it didn't then you just check how many floors you can check at most with i eggs within j - 1 steps starting from ((d[i - 1][j - 1] + 1) + 1) th floor d[i][j] can be calculated in N^2 Query is answered in log(N) time My Java 1.8 solution runs in 0.062s. Edited by author 19.03.2018 20:45 |
| Comp error | nexerd | 1119. Metro | 19 Mar 2018 16:47 | 2 |
while (n>0) { b=a; b=b/pow(10,n-1) - rezult/pow(10,n-1); for (int i=1;i<10;i++) if ((b-i>=0)&(b-i-1<0)) rezult += (i)*pow(10,n-1); n--; } /* if delete : b=b/pow(10,n-1) - rezult/pow(10,n-1); for (int i=1;i<10;i++) if ((b-i>=0)&(b-i-1<0)) rezult += (i)*pow(10,n-1); - work! */ 1. Which programming language do you use? 2. Did you name the variable for result "rezult" (if there is need to pre-declare variables in yout PL)? |
| WA 5 | Ildar Valiev | 1709. Penguin-Avia | 19 Mar 2018 04:11 | 16 |
WA 5 Ildar Valiev 4 Apr 2009 15:24 Can anybody give some test to judge my prog? I have WA on 5 test and cann't find my mistake. Ohhh! So stupid mistake)) Ohhh! So stupid mistake)) what? I use dfs and add edge between two pieces. I should use int64....... Edited by author 05.04.2009 07:22 When do you add edge between two pieces? This is a "boundary values" test. Consider a case when you have initially a full graph of ones - you have ~100^2 = 10^4 flights, and d=10^6. How much have you pay then to optimize the flights scheme? FT~~~~ I didn't know that long long is not supported. OH!!!!FT.. Realy, It's the problem ~ I didn't know that long long is not supported ,either ~ maybe the judge should update its compiler? Oh,I See.So we can only use "%I64d" to input/output?for I got WA while using "%lld" but AC with "%I64d" I know abbreviations AC, WA, TLE, DFS, BFS, DP... But what does FT stand for??? Re: WA 5 Валентин Дядька 19 Mar 2018 04:11 |
| test for wrong #14 | Bahodir | TUIT | | 1404. Easy to Hack! | 18 Mar 2018 02:49 | 2 |
test for wrong #14: input a h output v c Hm. Let's try to encrypt this output: v -> 21 + 5 = 26 mod 26 = 0 -> a; c -> 2 + 26 = 28 mod 26 = 2 -> c; So, the correct input must be "ac". P.S. "ah" decodes to "vh". Edited by author 18.03.2018 02:50 |
| WA 1!? | kaifonaft | 1305. Convex Hull | 18 Mar 2018 02:35 | 3 |
WA 1!? kaifonaft 26 Oct 2010 03:18 first test is not sample. Edited by author 26.10.2010 19:06 The test has only one point. and it is far away from 0 |
| My algorithm is too slow.It takes more than 0.6sec.So,somebody got AC less than 0.3sec,would you please send your progeam to me?(yym2008@hotmail.com) | Yu YuanMing | 1168. Radio Stations | 18 Mar 2018 00:55 | 6 |
Mine is 0.156s. I use searching and some calculation. I think maybe you got an slow algrithm with only searching. I got AC in 0.14 sec and didn't use any kind of special things. Just stupid counting Hmin and Hmax for each point of the matrix now it is 0.031 s sorting stations by radius does not change anything |
| WA 2 | Desargues | 1204. Idempotents | 16 Mar 2018 14:36 | 2 |
WA 2 Desargues 7 Jan 2014 04:50 I have wrong answer on test 2, but all tests that I checked have right answer. Please, give me some tests to check my code. Edited by author 16.03.2018 14:36 |
| No subject | Yaroslaff | 1430. Crime and Punishment | 16 Mar 2018 13:04 | 1 |
|
| WA11 | Didi (OSU11) | 1423. String Tale | 16 Mar 2018 01:25 | 1 |
WA11 Didi (OSU11) 16 Mar 2018 01:25 Get me test, please! I use kmp. |
| Instruction how to solve. | Mahilewets | 2099. Space Invader | 15 Mar 2018 19:04 | 3 |
Check (AB,CD)==0 (orthogonality). Check (AB, CD, DA) ==0 (planarity). Check AD>AC>AB, AC>BC, BD>BC (order). Check whether the projections to XY, YZ, XZ craddle each other continuations. It is sufficient to check only the projections to XY plane to get Accepted verdict. Sounds too complex. If we replace C, D with their orthogonal projection on AB, then all steps except first collapse to only one step (check D = C*a, a > 1). Still too complex, though. Over 20 lines in Python. There should be more simple solution... Edited by author 26.12.2017 04:30 No lengths or projections XY, etc. Using scalar product (sp) and triple product (tp) it is at most five conditions: sp(ab,cd) == 0 and tp(ab,bc,cd) == 0 and # ⟂ and planar sp(ab,bc) >= 0 and # C after B sp(cd,bc) >= 0 and # BC goes in direction of CD sp(cd,bd) >= sp(cd,bc) # D after C |
| HOW TO READ IN JAVA? | shagi | 1102. Strange Dialog | 15 Mar 2018 18:47 | 2 |
I always get ML, and i cant understand what sould i do? I tried to use Scanner and BufferedReader. Please tell me method to solve this. I dont understood too. It is unbelievable! |
| Что не верно? c# | dearboss | 1787. Turn for MEGA | 14 Mar 2018 18:54 | 1 |
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Task1787 { class Program { static void Main(string[] args) { string[] kMinute = Console.ReadLine().Split(new char[] { ' ', '\t', '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries); int k = int.Parse(kMinute[0]); int n = int.Parse(kMinute[1]); string[] nCam = Console.ReadLine().Split(new char[] { ' ', '\t', '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries); int sum = 0; foreach (var item in nCam) { sum += int.Parse(item); } Console.WriteLine(sum - (k * n)); } } } |
| Let me tell you why you are wrong!!! | 737363395 | 1096. Get the Right Route Plate! | 13 Mar 2018 16:17 | 3 |
In this problem,many people use the BFS(breadth first search).However,you can't search it from the two numbers which are in the last line,you should search it from the plate you need.Because of this,I was wrong before at test#6. If your can't understand it,you can test the sample input,the right answer is- 2 1 2 but not 2 4 2 And pay attention at the number of routes-1 to 2000. Believe me!!! Sorry to my English...I'm a Chinese... Good luck to you.:) =。= Why you say that? You should say "Sorry to my English...I'm a Japanese..." I ACed it with BFS first try! It took me 15 minutes to solve :\ What are you talking about? ~~~MY SOLUTION STAT~~~ Points nullified : 1) BFS doesn't work! 2) You can't search from the starting point. 3) Right answer isn't 2 4 2 Additional points : INCONSISTENCY NULLIFICATION : 0 corresponds to YOUR plate! Hope I made your "advice" invalid. The key point is to build the graph (I did in K^2) and traverse it with BFS, so that you could find the SHORTEST path (K). That gives me O(K^2) in total. Edited by author 13.03.2018 18:05 |